Fix material intro crash. Downgrade to SDK 27 until stable 28 support libs are available.
This commit is contained in:
parent
43efb5450f
commit
715d660377
1 changed files with 9 additions and 4 deletions
|
|
@ -44,18 +44,23 @@ static def getProperty(@Nullable Properties properties, String name) {
|
||||||
}
|
}
|
||||||
|
|
||||||
android {
|
android {
|
||||||
compileSdkVersion 28
|
compileSdkVersion 27
|
||||||
buildToolsVersion '28.0.0'
|
buildToolsVersion '27.0.3'
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
minSdkVersion 16
|
minSdkVersion 16
|
||||||
targetSdkVersion 28
|
targetSdkVersion 27
|
||||||
|
|
||||||
renderscriptTargetApi 28
|
renderscriptTargetApi 27
|
||||||
vectorDrawables.useSupportLibrary = true
|
vectorDrawables.useSupportLibrary = true
|
||||||
|
|
||||||
applicationId 'com.kabouzeid.gramophone'
|
applicationId 'com.kabouzeid.gramophone'
|
||||||
versionCode 162
|
versionCode 162
|
||||||
versionName '1.1.0'
|
versionName '1.1.0'
|
||||||
|
|
||||||
|
// needed for material intro!
|
||||||
|
dataBinding {
|
||||||
|
enabled = true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
signingConfigs {
|
signingConfigs {
|
||||||
release {
|
release {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue