Skip to content

Commit 1e72dc4

Browse files
authored
Remove Gradle warning
WARNING: Configuration 'compile' is obsolete and has been replaced with 'implementation' and 'api'. It will be removed at the end of 2018. For more information see: http://d.android.com/r/tools/update-dependency-configurations.html
1 parent 73f8a7b commit 1e72dc4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

example/android/app/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -133,10 +133,10 @@ android {
133133
}
134134

135135
dependencies {
136-
compile fileTree(dir: "libs", include: ["*.jar"])
137-
compile "com.android.support:appcompat-v7:23.0.1"
138-
compile "com.facebook.react:react-native:+" // From node_modules
139-
compile project(':react-native-navigation')
136+
implementation fileTree(dir: "libs", include: ["*.jar"])
137+
implementation "com.android.support:appcompat-v7:23.0.1"
138+
implementation "com.facebook.react:react-native:+" // From node_modules
139+
implementation project(':react-native-navigation')
140140
}
141141

142142
// Run this once to be able to run the application with BUCK

0 commit comments

Comments
 (0)