Move version numbers from build.gradle to gradle.properties

This commit is contained in:
2017-07-23 10:03:09 -04:00
parent 57dc19550d
commit 89400e281e
6 changed files with 74 additions and 70 deletions

View File

@@ -1,19 +1,17 @@
apply plugin: 'com.android.library'
android {
compileSdkVersion 25
buildToolsVersion "25.0.3"
compileSdkVersion COMPILE_SDK_VERSION as Integer
buildToolsVersion BUILD_TOOLS_VERSION
defaultConfig {
minSdkVersion 19
targetSdkVersion 25
minSdkVersion MIN_SDK_VERSION as Integer
targetSdkVersion TARGET_SDK_VERSION as Integer
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
@@ -23,5 +21,5 @@ android {
}
dependencies {
implementation 'com.android.support:appcompat-v7:25.3.1'
implementation "com.android.support:appcompat-v7:$SUPPORT_LIBRARY_VERSION"
}