Skip to content

Commit aa538cc

Browse files
committed
Add debug keystore
1 parent 782b593 commit aa538cc

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

app/build.gradle.kts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ plugins {
66
}
77

88
android {
9+
signingConfigs {
10+
getByName("debug") {
11+
storeFile = file("debug.keystore")
12+
keyAlias = "androiddebugkey"
13+
storePassword = "android"
14+
keyPassword = "android"
15+
}
16+
}
917
namespace = "com.paulcoding.hviewer"
1018
compileSdk = 35
1119

@@ -23,6 +31,7 @@ android {
2331
debug {
2432
applicationIdSuffix = ".dev"
2533
resValue("string", "app_name", "H Viewer (Dev)")
34+
signingConfig = signingConfigs.getByName("debug")
2635
}
2736
release {
2837
isMinifyEnabled = true

app/debug.keystore

2.56 KB
Binary file not shown.

0 commit comments

Comments
 (0)