Skip to content

Commit ed8baf8

Browse files
committed
chore: update debug keystore
1 parent c717ada commit ed8baf8

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

example/android/app/build.gradle

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -142,14 +142,6 @@ android {
142142
include "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
143143
}
144144
}
145-
signingConfigs {
146-
debug {
147-
storeFile file('debug.keystore')
148-
storePassword 'android'
149-
keyAlias 'androiddebugkey'
150-
keyPassword 'android'
151-
}
152-
}
153145
buildTypes {
154146
debug {
155147
signingConfig signingConfigs.debug

example/android/app/keystores/BUCK

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
keystore(
2+
name = "debug",
3+
properties = "debug.keystore.properties",
4+
store = "debug.keystore",
5+
visibility = [
6+
"PUBLIC",
7+
],
8+
)
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
key.store=debug.keystore
2+
key.alias=androiddebugkey
3+
key.store.password=android
4+
key.alias.password=android

0 commit comments

Comments
 (0)