Skip to content

Commit

Permalink
Switch other samples to use local debug keystore
Browse files Browse the repository at this point in the history
  • Loading branch information
riggaroo committed Apr 25, 2024
1 parent 3f8be4e commit 82feefd
Show file tree
Hide file tree
Showing 14 changed files with 13 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Crane/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ android {
signingConfigs {
// We use a bundled debug keystore, to allow debug builds from CI to be upgradable
named("debug") {
storeFile = rootProject.file("debug.keystore")
storeFile = File(System.getProperty("user.home"), ".android/debug.keystore")
storePassword = "android"
keyAlias = "androiddebugkey"
keyPassword = "android"
Expand Down
Binary file removed Crane/debug.keystore
Binary file not shown.
4 changes: 2 additions & 2 deletions JetLagged/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ android {
}

signingConfigs {
// We use a bundled debug keystore, to allow debug builds from CI to be upgradable
// Important: change the keystore for a production deployment
named("debug") {
storeFile = rootProject.file("debug.keystore")
storeFile = File(System.getProperty("user.home"), ".android/debug.keystore")
storePassword = "android"
keyAlias = "androiddebugkey"
keyPassword = "android"
Expand Down
Binary file removed JetLagged/debug.keystore
Binary file not shown.
4 changes: 2 additions & 2 deletions JetNews/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ android {
}

signingConfigs {
// We use a bundled debug keystore, to allow debug builds from CI to be upgradable
// Important: change the keystore for a production deployment
named("debug") {
storeFile = rootProject.file("debug.keystore")
storeFile = File(System.getProperty("user.home"), ".android/debug.keystore")
storePassword = "android"
keyAlias = "androiddebugkey"
keyPassword = "android"
Expand Down
Binary file removed JetNews/debug.keystore
Binary file not shown.
2 changes: 1 addition & 1 deletion Jetcaster/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ android {
}

signingConfigs {
// We use a bundled debug keystore, to allow debug builds from CI to be upgradable
// Important: change the keystore for a production deployment
named("debug") {
storeFile = File(System.getProperty("user.home"), ".android/debug.keystore")
storePassword = "android"
Expand Down
4 changes: 2 additions & 2 deletions Jetchat/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ android {
}

signingConfigs {
// We use a bundled debug keystore, to allow debug builds from CI to be upgradable
// Important: change the keystore for a production deployment
named("debug") {
storeFile = rootProject.file("debug.keystore")
storeFile = File(System.getProperty("user.home"), ".android/debug.keystore")
storePassword = "android"
keyAlias = "androiddebugkey"
keyPassword = "android"
Expand Down
Binary file removed Jetchat/debug.keystore
Binary file not shown.
3 changes: 1 addition & 2 deletions Jetsnack/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,7 @@ android {
}

signingConfigs {
// We use a bundled debug keystore, to allow debug builds from CI to be upgradable
// TODO in your apps you'd want to sign with your correct signing certificate
// Important: change the keystore for a production deployment
named("debug") {
storeFile = File(System.getProperty("user.home"), ".android/debug.keystore")
storePassword = "android"
Expand Down
4 changes: 2 additions & 2 deletions Owl/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ android {
}

signingConfigs {
// We use a bundled debug keystore, to allow debug builds from CI to be upgradable
// Important: change the keystore for a production deployment
named("debug") {
storeFile = rootProject.file("debug.keystore")
storeFile = File(System.getProperty("user.home"), ".android/debug.keystore")
storePassword = "android"
keyAlias = "androiddebugkey"
keyPassword = "android"
Expand Down
Binary file removed Owl/debug.keystore
Binary file not shown.
4 changes: 2 additions & 2 deletions Reply/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ android {
}

signingConfigs {
// We use a bundled debug keystore, to allow debug builds from CI to be upgradable
// Important: change the keystore for a production deployment
named("debug") {
storeFile = rootProject.file("debug.keystore")
storeFile = File(System.getProperty("user.home"), ".android/debug.keystore")
storePassword = "android"
keyAlias = "androiddebugkey"
keyPassword = "android"
Expand Down
Binary file removed Reply/debug.keystore
Binary file not shown.

0 comments on commit 82feefd

Please sign in to comment.