33 lines
853 B
Groovy
33 lines
853 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 32
|
|
|
|
defaultConfig {
|
|
applicationId "ch.blinkenlights.android.vanilla"
|
|
minSdkVersion rootProject.ext.minSdkVersion
|
|
targetSdkVersion rootProject.ext.targetSdkVersion
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
minifyEnabled true
|
|
zipAlignEnabled true
|
|
}
|
|
}
|
|
lint {
|
|
abortOnError false
|
|
disable 'MissingTranslation', 'ExtraTranslation'
|
|
}
|
|
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'androidx.legacy:legacy-support-core-ui:1.0.0'
|
|
implementation 'androidx.media:media:1.2.1'
|
|
implementation 'com.google.android.material:material:1.0.0'
|
|
implementation 'junit:junit:4.12'
|
|
compileOnly 'androidx.annotation:annotation:1.0.0'
|
|
}
|