Skip to content

Commit

Permalink
Make build.gradle lighter
Browse files Browse the repository at this point in the history
  • Loading branch information
Minishlink authored Jan 3, 2019
1 parent 5239bbf commit f660992
Showing 1 changed file with 2 additions and 11 deletions.
13 changes: 2 additions & 11 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,13 @@ android {
buildToolsVersion safeExtGet('buildToolsVersion', "26.0.3")

defaultConfig {
minSdkVersion 16
minSdkVersion safeExtGet('minSdkVersion', 16)
targetSdkVersion safeExtGet('targetSdkVersion', 26)
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
}
}
}

repositories {
mavenCentral()
}

dependencies {
compile 'com.facebook.react:react-native:+'
compileOnly "com.facebook.react:react-native:${safeExtGet('reactNativeVersion', '+')}"
}

0 comments on commit f660992

Please sign in to comment.