Skip to content

Commit

Permalink
Disable custom signing config
Browse files Browse the repository at this point in the history
  • Loading branch information
nain-F49FF806 committed Oct 2, 2024
1 parent 67670f2 commit 4df0f1e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ android {
defaultConfig {
minSdk = rootProject.extra["minSdkVersion"] as Int
targetSdk = rootProject.extra["targetSdkVersion"] as Int
versionCode = 1727862000
versionCode = 1727864000
versionName = "2024.10.02"
applicationId = "alt.nainapps.aer"
vectorDrawables {
Expand Down Expand Up @@ -48,7 +48,10 @@ android {
}

buildTypes {
val useAnemoConfig = rootProject.ext.get("keyStoreFile") != null && (rootProject.ext.get("keyStoreFile") as File).exists()
// Disable this for now. We focus on F-droid builds
// which have their own signing system.
// val useAnemoConfig = rootProject.ext.get("keyStoreFile") != null && (rootProject.ext.get("keyStoreFile") as File).exists()
val useAnemoConfig = false

getByName("release") {
isMinifyEnabled = true
Expand Down

0 comments on commit 4df0f1e

Please sign in to comment.