* Add intro skipper support * Fix checking for 404 * Add back missing Intro class and dependencies due to rebase * Add preference * Clean up visibility logic * Update skip intro button design * Add proguard file to keep Serializable classes * Move introCheck to a separate Runnable and fix Runnables are never cleaned up * Simplify check before starting runnable Co-authored-by: Jarne Demeulemeester <jarnedemeulemeester@gmail.com>
28 lines
No EOL
905 B
Text
28 lines
No EOL
905 B
Text
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
@Suppress("DSL_SCOPE_VIOLATION") // False positive
|
|
plugins {
|
|
alias(libs.plugins.android.application) apply false
|
|
alias(libs.plugins.android.library) apply false
|
|
alias(libs.plugins.kotlin.android) apply false
|
|
alias(libs.plugins.kotlin.parcelize) apply false
|
|
alias(libs.plugins.kotlin.kapt) apply false
|
|
alias(libs.plugins.kotlin.serialization) apply false
|
|
alias(libs.plugins.androidx.navigation.safeargs) apply false
|
|
alias(libs.plugins.hilt) apply false
|
|
alias(libs.plugins.aboutlibraries) apply false
|
|
alias(libs.plugins.ktlint) apply false
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
tasks.create<Delete>("clean") {
|
|
delete(rootProject.buildDir)
|
|
}
|
|
|
|
val appVersionCode by extra { 14 }
|
|
val appVersionName by extra { "0.8.0" } |