File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -5,19 +5,19 @@ buildscript {
5
5
}
6
6
7
7
dependencies {
8
- classpath ' com.android.tools.build:gradle:1.3.1 '
8
+
9
9
}
10
10
}
11
11
12
12
apply plugin : ' com.android.library'
13
13
14
14
android {
15
- compileSdkVersion 23
16
- buildToolsVersion " 23.0.1 "
15
+ compileSdkVersion rootProject . ext . compileSdkVersion
16
+ buildToolsVersion rootProject . ext . buildToolsVersion
17
17
18
18
defaultConfig {
19
- minSdkVersion 16
20
- targetSdkVersion 22
19
+ minSdkVersion rootProject . ext . minSdkVersion
20
+ targetSdkVersion rootProject . ext . targetSdkVersion
21
21
versionCode 1
22
22
versionName " 1.0"
23
23
}
@@ -31,6 +31,6 @@ repositories {
31
31
}
32
32
33
33
dependencies {
34
- compile ' com.facebook.react:react-native:+'
34
+ implementation ' com.facebook.react:react-native:+'
35
35
}
36
36
You can’t perform that action at this time.
0 commit comments