Skip to content

Commit

Permalink
Updated File
Browse files Browse the repository at this point in the history
  • Loading branch information
mikekpl committed Aug 1, 2023
1 parent dd39172 commit 63eeab8
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,7 @@ plugins {
}

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

namespace = "com.mikelau.pokedex"
compileSdk = 33

Expand All @@ -36,7 +29,6 @@ android {
isDebuggable = false
isMinifyEnabled = true
isShrinkResources = true
signingConfig = signingConfigs.getByName("release")
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro",
Expand Down

0 comments on commit 63eeab8

Please sign in to comment.