app/build.gradle: fix to make it build

This commit is contained in:
norohind 2022-09-14 12:13:33 +03:00
parent f43acdec83
commit 92ab814f75
Signed by: norohind
GPG Key ID: 01C3BECC26FB59E1

View File

@ -1,7 +1,7 @@
apply plugin: 'com.android.application'
android {
compileSdkVersion 32
compileSdkVersion rootProject.ext.compileSdkVersion
defaultConfig {
applicationId "ch.blinkenlights.android.vanilla"
@ -16,8 +16,9 @@ android {
zipAlignEnabled true
}
}
lint {
abortOnError false
lintOptions {
abortOnError false
disable 'MissingTranslation', 'ExtraTranslation'
}