Skip to content

Commit 5e9a490

Browse files
authored
Merge pull request #35 from lecler-i/patch
Fix sdkVersion warning from gradle v3+
2 parents bf67311 + 0b35f05 commit 5e9a490

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

android/build.gradle

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

33
android {
4-
compileSdkVersion 23
5-
buildToolsVersion "23.0.1"
4+
compileSdkVersion 26
5+
buildToolsVersion "26.0.2"
66

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

2121
dependencies {
22-
compile 'com.facebook.react:react-native:+'
23-
}
22+
implementation 'com.facebook.react:react-native:+'
23+
}

example/android/app/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -126,10 +126,10 @@ android {
126126
}
127127

128128
dependencies {
129-
compile project(':react-native-directed-scrollview')
130-
compile fileTree(dir: "libs", include: ["*.jar"])
131-
compile "com.android.support:appcompat-v7:23.0.1"
132-
compile "com.facebook.react:react-native:+" // From node_modules
129+
implementation project(':react-native-directed-scrollview')
130+
implementation fileTree(dir: "libs", include: ["*.jar"])
131+
implementation "com.android.support:appcompat-v7:23.0.1"
132+
implementation "com.facebook.react:react-native:+" // From node_modules
133133
}
134134

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

0 commit comments

Comments
 (0)