We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b89b7d2 commit 1b3558dCopy full SHA for 1b3558d
android/build.gradle
@@ -5,19 +5,19 @@ buildscript {
5
}
6
7
dependencies {
8
- classpath 'com.android.tools.build:gradle:1.3.1'
+
9
10
11
12
apply plugin: 'com.android.library'
13
14
android {
15
- compileSdkVersion 23
16
- buildToolsVersion "23.0.1"
+ compileSdkVersion rootProject.ext.compileSdkVersion
+ buildToolsVersion rootProject.ext.buildToolsVersion
17
18
defaultConfig {
19
- minSdkVersion 16
20
- targetSdkVersion 22
+ minSdkVersion rootProject.ext.minSdkVersion
+ targetSdkVersion rootProject.ext.targetSdkVersion
21
versionCode 1
22
versionName "1.0"
23
@@ -31,6 +31,6 @@ repositories {
31
32
33
34
- compile 'com.facebook.react:react-native:+'
+ implementation 'com.facebook.react:react-native:+'
35
36
0 commit comments