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 812f12e commit 0c205a2Copy full SHA for 0c205a2
example/android/app/build.gradle
@@ -46,9 +46,24 @@ android {
46
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
47
}
48
49
+ signingConfigs {
50
+ forAll {
51
+ storeFile file("${rootDir.absolutePath}/key.jks")
52
+ storePassword 'picker'
53
+ keyAlias 'picker'
54
+ keyPassword 'picker'
55
+ }
56
57
+
58
buildTypes {
59
+ debug {
60
+ signingConfig signingConfigs.forAll
61
62
+ profile {
63
64
65
release {
- signingConfig signingConfigs.debug
66
67
68
69
example/android/key.jks
4.16 KB
0 commit comments