Use SDK versions defined in buildSrc

This commit is contained in:
arkon 2020-06-28 19:32:57 -04:00
parent e405512146
commit 484fc498e1
1 changed files with 4 additions and 4 deletions

View File

@ -1,8 +1,8 @@
apply plugin: 'org.jmailen.kotlinter' apply plugin: 'org.jmailen.kotlinter'
android { android {
compileSdkVersion 29 compileSdkVersion AndroidConfig.compileSdk
buildToolsVersion '29.0.3' buildToolsVersion AndroidConfig.buildTools
buildTypes { buildTypes {
release { release {
@ -31,8 +31,8 @@ android {
} }
defaultConfig { defaultConfig {
minSdkVersion 16 minSdkVersion AndroidConfig.minSdk
targetSdkVersion 29 targetSdkVersion AndroidConfig.targetSdk
applicationIdSuffix pkgNameSuffix applicationIdSuffix pkgNameSuffix
versionCode extVersionCode versionCode extVersionCode
versionName "$libVersion.$extVersionCode" versionName "$libVersion.$extVersionCode"