We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de472cb commit 3467eeaCopy full SHA for 3467eea
1 file changed
app/build.gradle.kts
@@ -34,7 +34,7 @@ android {
34
}
35
36
signingConfigs {
37
- val debugKeystore = rootProject.file("debug.keystore")
+ val debugKeystore = file("$rootDir/debug.keystore")
38
if (debugKeystore.exists()) {
39
getByName("debug") {
40
storeFile = debugKeystore
@@ -43,12 +43,6 @@ android {
43
keyPassword = "android"
44
45
46
- getByName("debug") {
47
- storeFile = file("$rootDir/debug.keystore")
48
- storePassword = "android"
49
- keyAlias = "androiddebugkey"
50
- keyPassword = "android"
51
- }
52
53
54
buildTypes {
0 commit comments