mirror of
https://github.com/rhunk/SnapEnhance.git
synced 2025-05-08 02:14:33 +02:00
13 lines
567 B
Plaintext
13 lines
567 B
Plaintext
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
@Suppress("DSL_SCOPE_VIOLATION") // TODO: Remove once KTIJ-19369 is fixed
|
|
plugins {
|
|
alias(libs.plugins.androidApplication) apply false
|
|
alias(libs.plugins.androidLibrary) apply false
|
|
alias(libs.plugins.kotlinAndroid) apply false
|
|
}
|
|
|
|
rootProject.ext.set("appVersionName", "2.0.0")
|
|
rootProject.ext.set("appVersionCode", 10)
|
|
rootProject.ext.set("applicationId", "me.rhunk.snapenhance")
|
|
|
|
true // Needed to make the Suppress annotation work for the plugins block |