Skip to content

Commit

Permalink
Dynamic compile targets
Browse files Browse the repository at this point in the history
  • Loading branch information
a7ul committed Oct 13, 2018
1 parent b89b7d2 commit 1b3558d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:1.3.1'

}
}

apply plugin: 'com.android.library'

android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion rootProject.ext.buildToolsVersion

defaultConfig {
minSdkVersion 16
targetSdkVersion 22
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 1
versionName "1.0"
}
Expand All @@ -31,6 +31,6 @@ repositories {
}

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

0 comments on commit 1b3558d

Please sign in to comment.