Browse Source

Merge pull request #40 from robwalkerco/patch-1

Change compile to implementation in Gradle
Hau Vo 5 years ago
parent
commit
dc9af06fce
No account linked to committer's email address
2 changed files with 3 additions and 3 deletions
  1. 1
    1
      README.md
  2. 2
    2
      android/build.gradle

+ 1
- 1
README.md View File

32
   	```
32
   	```
33
 3. Insert the following lines inside the dependencies block in `android/app/build.gradle`:
33
 3. Insert the following lines inside the dependencies block in `android/app/build.gradle`:
34
   	```
34
   	```
35
-      compile project(':react-native-thumbnail')
35
+      implementation project(':react-native-thumbnail')
36
   	```
36
   	```
37
 
37
 
38
 ## Usage
38
 ## Usage

+ 2
- 2
android/build.gradle View File

33
 }
33
 }
34
 
34
 
35
 dependencies {
35
 dependencies {
36
-    compile 'com.facebook.react:react-native:+'
36
+    implementation 'com.facebook.react:react-native:+'
37
 }
37
 }
38
-  
38
+