Skip to content

Commit

Permalink
Chore: Add debug keystore for consistent debug builds (#1162)
Browse files Browse the repository at this point in the history
* add debug keystore for consistent debug builds in local and on github actions

* add keystore file
  • Loading branch information
anilbeesetti authored Dec 9, 2024
1 parent 61ec314 commit 02fac1d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ render.experimental.xml

# Keystore files
*.jks
*.keystore

# Google Services (e.g. APIs or Firebase)
google-services.json
Expand Down
9 changes: 9 additions & 0 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,15 @@ android {
}
}

signingConfigs {
getByName("debug") {
storeFile = file("${project.rootDir}/app/debug.keystore")
storePassword = "android"
keyAlias = "androiddebugkey"
keyPassword = "android"
}
}

splits {
abi {
isEnable = true
Expand Down
Binary file added app/debug.keystore
Binary file not shown.

0 comments on commit 02fac1d

Please sign in to comment.