I really liked our own notification styles, but on Android 11, it just starts to look very alien.
35 lines
824 B
Groovy
35 lines
824 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
lintOptions {
|
|
disable 'MissingTranslation'
|
|
disable 'ExtraTranslation'
|
|
}
|
|
|
|
compileSdkVersion rootProject.ext.compileSdkVersion
|
|
|
|
defaultConfig {
|
|
applicationId "ch.blinkenlights.android.vanilla"
|
|
minSdkVersion rootProject.ext.minSdkVersion
|
|
targetSdkVersion rootProject.ext.targetSdkVersion
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled true
|
|
}
|
|
}
|
|
|
|
lintOptions {
|
|
abortOnError false
|
|
}
|
|
}
|
|
|
|
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'
|
|
}
|