Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,16 +75,16 @@ To use this kit inside your react native project, you must follow these steps:
- [x] Add the following lines to your `android/settings.gradle`:

```gradle
include ':ReactNativeAndroidKit'
project(':ReactNativeAndroidKit').projectDir = file('../node_modules/react-native-android-kit/android')
include ':react-native-android-kit'
project(':react-native-android-kit').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-android-kit/android')
```

- [x] Inside `android/app/build.gradle` file, add compilation instruction for ReactNativeAndroidKit like that:

```gradle
dependencies {
...
compile project(':ReactNativeAndroidKit')
compile project(':react-native-android-kit')
}
```

Expand Down