Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe we just remove this block altogether? I think Android Studio already defaults to the local key with these parameters for debug builds.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Question is if the benchmark buildType allows it, but I assume there's default signingConfig even if it's not defined.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Benchmark requires release build, and release requires a certificate :-/ Not sure how else to work around this

// 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.
4 changes: 2 additions & 2 deletions Jetcaster/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 Jetcaster/debug.keystore
Binary file not shown.
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.
4 changes: 2 additions & 2 deletions Jetsnack/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 Jetsnack/debug.keystore
Binary file not shown.
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.