Skip to content

Commit 0c205a2

Browse files
committed
🔒️ Add a default keystore for the example
1 parent 812f12e commit 0c205a2

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

example/android/app/build.gradle

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,24 @@ android {
4646
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
4747
}
4848

49+
signingConfigs {
50+
forAll {
51+
storeFile file("${rootDir.absolutePath}/key.jks")
52+
storePassword 'picker'
53+
keyAlias 'picker'
54+
keyPassword 'picker'
55+
}
56+
}
57+
4958
buildTypes {
59+
debug {
60+
signingConfig signingConfigs.forAll
61+
}
62+
profile {
63+
signingConfig signingConfigs.forAll
64+
}
5065
release {
51-
signingConfig signingConfigs.debug
66+
signingConfig signingConfigs.forAll
5267
}
5368
}
5469
}

example/android/key.jks

4.16 KB
Binary file not shown.

0 commit comments

Comments
 (0)