Skip to content

Commit c078edf

Browse files
author
mahomahoxd
authored
Update build.gradle
Updated gradle version, compileSdkVersion with the corresponding buildToolsVersion. Using implementation instead of compile as of gradle 3.0.1.
1 parent a6ab78b commit c078edf

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

android/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
apply plugin: 'com.android.library'
22

33
android {
4-
compileSdkVersion 25
5-
buildToolsVersion "25.0.3"
4+
compileSdkVersion 27
5+
buildToolsVersion "27.0.3"
66

77
defaultConfig {
88
minSdkVersion 16
@@ -19,8 +19,8 @@ android {
1919
}
2020

2121
dependencies {
22-
compile fileTree(dir: 'libs', include: ['*.jar'])
23-
testCompile 'junit:junit:4.12'
24-
compile 'com.android.support:appcompat-v7:23.4.0'
25-
compile "com.facebook.react:react-native:+" // From node_modules
22+
implementation fileTree(dir: 'libs', include: ['*.jar'])
23+
testImplementation 'junit:junit:4.12'
24+
implementation 'com.android.support:appcompat-v7:27.0.2'
25+
implementation "com.facebook.react:react-native:+" // From node_modules
2626
}

0 commit comments

Comments
 (0)