We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 705d4a0 commit ae4d387Copy full SHA for ae4d387
app/build.gradle
@@ -126,6 +126,7 @@ android {
126
isDefault true
127
minifyEnabled false
128
enableUnitTestCoverage true
129
+ signingConfig signingConfigs.debug
130
}
131
132
@@ -146,6 +147,15 @@ android {
146
147
keyPassword SESSION_HUAWEI_KEY_PASSWORD
148
149
150
+
151
+ debug {
152
+ // This keystore is for debug builds only and it should never be used to
153
+ // sign the release apk.
154
+ storeFile new File(rootProject.projectDir, "etc/debug.keystore")
155
+ storePassword "android"
156
+ keyAlias "androiddebugkey"
157
+ keyPassword "android"
158
+ }
159
160
161
flavorDimensions "distribution"
etc/debug.keystore
2.56 KB
0 commit comments