fix: module flavors

This commit is contained in:
Zane Schepke
2025-03-01 21:07:47 -05:00
parent 3ea4aea5cf
commit 93d6f8aa45
2 changed files with 11 additions and 4 deletions
+10 -3
View File
@@ -19,13 +19,20 @@ android {
isMinifyEnabled = false
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
}
create(Constants.PRERELEASE) {
initWith(getByName(Constants.RELEASE))
}
create(Constants.NIGHTLY) {
initWith(getByName(Constants.RELEASE))
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = "11"
jvmTarget = Constants.JVM_TARGET
}
}
+1 -1
View File
@@ -1 +1 @@
3
4