Skip to content

Commit e9ab4d9

Browse files
committed
Revert "Use repo debug keystore"
This reverts commit e3e7443.
1 parent 288612f commit e9ab4d9

File tree

2 files changed

+3
-15
lines changed

2 files changed

+3
-15
lines changed

app/build.gradle.kts

+3-15
Original file line numberDiff line numberDiff line change
@@ -119,29 +119,17 @@ android {
119119
}
120120
}
121121

122-
signingConfigs {
123-
create("default") {
124-
keyAlias = "androiddebugkey"
125-
keyPassword = "android"
126-
storePassword = "android"
127-
storeFile = file("$projectDir/debug.keystore")
128-
}
129-
}
130-
131122
buildTypes {
132123
debug {
133124
val debug = ".debug"
134125
applicationIdSuffix = debug
135126
versionNameSuffix = debug
136127
resValue("string", "app_name", "DNSNet Debug")
137-
signingConfig = signingConfigs.getByName("default")
138128
}
139129

140130
release {
141-
signingConfig = if (storeFilePath != null) {
142-
signingConfigs.getByName("release")
143-
} else {
144-
signingConfigs.getByName("default")
131+
if (storeFilePath != null) {
132+
signingConfig = signingConfigs.getByName("release")
145133
}
146134
isMinifyEnabled = true
147135
proguardFiles(
@@ -159,7 +147,7 @@ android {
159147
getDefaultProguardFile("proguard-android.txt"),
160148
"proguard-rules.pro"
161149
)
162-
signingConfig = signingConfigs.getByName("default")
150+
signingConfig = signingConfigs.getByName("debug")
163151
resValue("string", "app_name", "DNSNet Benchmark")
164152
}
165153
}

app/debug.keystore

-2.56 KB
Binary file not shown.

0 commit comments

Comments
 (0)