revert to sdk-23

Too much breaks with the upgrade and I don't have time to deal.
This commit is contained in:
Eric House 2018-07-21 21:36:51 -07:00
parent affb13207e
commit 70b22f7d11
3 changed files with 3 additions and 3 deletions

View file

@ -10,7 +10,7 @@ android:
- tools - tools
- platform-tools - platform-tools
- build-tools-27.0.3 - build-tools-27.0.3
- android-26 - android-23
licenses: licenses:
- android-sdk-preview-license-.+ - android-sdk-preview-license-.+
- android-sdk-license-.+ - android-sdk-license-.+

View file

@ -33,7 +33,7 @@ android {
buildToolsVersion '27.0.3' buildToolsVersion '27.0.3'
defaultConfig { defaultConfig {
minSdkVersion 8 minSdkVersion 8
targetSdkVersion 26 targetSdkVersion 23
versionCode VERSION_CODE_BASE versionCode VERSION_CODE_BASE
versionName VERSION_NAME versionName VERSION_NAME
} }

View file

@ -29,7 +29,7 @@ subprojects {
afterEvaluate {project -> afterEvaluate {project ->
if (project.hasProperty("android")) { if (project.hasProperty("android")) {
android { android {
compileSdkVersion 26 compileSdkVersion 23
} }
} }
} }