Skip to content

Commit 82feefd

Browse files
committed
Switch other samples to use local debug keystore
1 parent 3f8be4e commit 82feefd

File tree

14 files changed

+13
-14
lines changed

14 files changed

+13
-14
lines changed

Crane/app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ android {
4747
signingConfigs {
4848
// We use a bundled debug keystore, to allow debug builds from CI to be upgradable
4949
named("debug") {
50-
storeFile = rootProject.file("debug.keystore")
50+
storeFile = File(System.getProperty("user.home"), ".android/debug.keystore")
5151
storePassword = "android"
5252
keyAlias = "androiddebugkey"
5353
keyPassword = "android"

Crane/debug.keystore

-2.05 KB
Binary file not shown.

JetLagged/app/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ android {
3434
}
3535

3636
signingConfigs {
37-
// We use a bundled debug keystore, to allow debug builds from CI to be upgradable
37+
// Important: change the keystore for a production deployment
3838
named("debug") {
39-
storeFile = rootProject.file("debug.keystore")
39+
storeFile = File(System.getProperty("user.home"), ".android/debug.keystore")
4040
storePassword = "android"
4141
keyAlias = "androiddebugkey"
4242
keyPassword = "android"

JetLagged/debug.keystore

-2.05 KB
Binary file not shown.

JetNews/app/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ android {
3434
}
3535

3636
signingConfigs {
37-
// We use a bundled debug keystore, to allow debug builds from CI to be upgradable
37+
// Important: change the keystore for a production deployment
3838
named("debug") {
39-
storeFile = rootProject.file("debug.keystore")
39+
storeFile = File(System.getProperty("user.home"), ".android/debug.keystore")
4040
storePassword = "android"
4141
keyAlias = "androiddebugkey"
4242
keyPassword = "android"

JetNews/debug.keystore

-2.05 KB
Binary file not shown.

Jetcaster/app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ android {
3535
}
3636

3737
signingConfigs {
38-
// We use a bundled debug keystore, to allow debug builds from CI to be upgradable
38+
// Important: change the keystore for a production deployment
3939
named("debug") {
4040
storeFile = File(System.getProperty("user.home"), ".android/debug.keystore")
4141
storePassword = "android"

Jetchat/app/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ android {
3535
}
3636

3737
signingConfigs {
38-
// We use a bundled debug keystore, to allow debug builds from CI to be upgradable
38+
// Important: change the keystore for a production deployment
3939
named("debug") {
40-
storeFile = rootProject.file("debug.keystore")
40+
storeFile = File(System.getProperty("user.home"), ".android/debug.keystore")
4141
storePassword = "android"
4242
keyAlias = "androiddebugkey"
4343
keyPassword = "android"

Jetchat/debug.keystore

-2.05 KB
Binary file not shown.

Jetsnack/app/build.gradle.kts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,7 @@ android {
3434
}
3535

3636
signingConfigs {
37-
// We use a bundled debug keystore, to allow debug builds from CI to be upgradable
38-
// TODO in your apps you'd want to sign with your correct signing certificate
37+
// Important: change the keystore for a production deployment
3938
named("debug") {
4039
storeFile = File(System.getProperty("user.home"), ".android/debug.keystore")
4140
storePassword = "android"

Owl/app/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ android {
3434
}
3535

3636
signingConfigs {
37-
// We use a bundled debug keystore, to allow debug builds from CI to be upgradable
37+
// Important: change the keystore for a production deployment
3838
named("debug") {
39-
storeFile = rootProject.file("debug.keystore")
39+
storeFile = File(System.getProperty("user.home"), ".android/debug.keystore")
4040
storePassword = "android"
4141
keyAlias = "androiddebugkey"
4242
keyPassword = "android"

Owl/debug.keystore

-2.05 KB
Binary file not shown.

Reply/app/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ android {
3434
}
3535

3636
signingConfigs {
37-
// We use a bundled debug keystore, to allow debug builds from CI to be upgradable
37+
// Important: change the keystore for a production deployment
3838
named("debug") {
39-
storeFile = rootProject.file("debug.keystore")
39+
storeFile = File(System.getProperty("user.home"), ".android/debug.keystore")
4040
storePassword = "android"
4141
keyAlias = "androiddebugkey"
4242
keyPassword = "android"

Reply/debug.keystore

-2.68 KB
Binary file not shown.

0 commit comments

Comments
 (0)