Skip to content

Commit 8e94d13

Browse files
committedOct 29, 2018
Updated DOCS
Fixed #32
1 parent 9f80e60 commit 8e94d13

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed
 

‎README.md

+11-7
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,16 @@ If you have any issues, please attach a example project that i could reproduce i
2424
2525
## Getting started
2626

27-
**ATTENTION**: Make sure to use react-native 0.56.0 or a greater version
27+
**ATTENTION**: Make sure to use react-native 0.57.0 or a greater version
2828

29-
#### react-native version 0.56.0 or greater
29+
#### react-native version 0.57.4 or greater
3030

3131
`$ npm install react-native-nested-scroll-view --save`
3232

33+
#### react-native version 0.56.0 or bellow
34+
35+
`$ npm install react-native-nested-scroll-view@7.0.0 --save`
36+
3337
#### react-native versions 0.55.4 or bellow
3438

3539
`$ npm install react-native-nested-scroll-view@6.0.1 --save`
@@ -61,11 +65,11 @@ android/app/build.gradle
6165
```diff
6266

6367
dependencies {
64-
compile fileTree(dir: "libs", include: ["*.jar"])
65-
+ compile 'com.android.support:appcompat-v7:26.1.0'
66-
+ compile 'com.android.support:design:26.1.0'
67-
compile "com.facebook.react:react-native:+" // From node_modules
68-
+ compile project(':react-native-nested-scroll-view')
68+
implementation fileTree(dir: "libs", include: ["*.jar"])
69+
+ implementation 'com.android.support:appcompat-v7:27.1.1'
70+
+ implementation 'com.android.support:design:27.1.1'
71+
implementation 'com.facebook.react:react-native:+' // From node_modules
72+
+ implementation project(':react-native-nested-scroll-view')
6973
}
7074

7175
```

0 commit comments

Comments
 (0)
Please sign in to comment.