Skip to content

Commit

Permalink
Remove signing config in build.gradle
Browse files Browse the repository at this point in the history
This is to enable reproducible builds
  • Loading branch information
Taewan-P committed Jun 27, 2024
1 parent 1eeb5e0 commit 54a806f
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,6 @@ android {
generateLocaleConfig = true
}

signingConfigs {
create("release") {
storeFile = file("keystore.jks")
storePassword = System.getenv("SIGNING_PASSWORD")
keyAlias = System.getenv("SIGNING_KEY_ALIAS")
keyPassword = System.getenv("SIGNING_PASSWORD")
}
}

buildTypes {
release {
isMinifyEnabled = true
Expand All @@ -46,7 +37,6 @@ android {
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
)
signingConfig = signingConfigs.getByName("release")
}
}
compileOptions {
Expand Down

0 comments on commit 54a806f

Please sign in to comment.