[ADDED] Additional notes on debug keystore usage.

This commit is contained in:
Hossain Khan
2025-04-29 22:16:57 -04:00
parent 7931574dfe
commit b41d3dbf5e
2 changed files with 6 additions and 0 deletions
+2
View File
@@ -47,6 +47,8 @@ android {
// It allows early testers to test drive the app without us worrying about signing
// https://developer.android.com/studio/publish/app-signing
storeFile = file("${rootProject.projectDir}/keystore/debug.keystore")
// ️ When time comes, these values should come from `secret.properties` file or CI/CD secrets.
storePassword = "android"
keyAlias = "androiddebugkey"
keyPassword = "android"
+4
View File
@@ -4,6 +4,10 @@ The debug keystore file is added to the repository to make it easier for develop
the app without having to generate a new keystore file each time. The debug keystore is used for
signing the app during development and CI builds, and it is **not intended for production use**.
> [!NOTE]
> The debug keystore is generated automatically by Android Studio
> and copied from the `$HOME/.android/debug.keystore` location.
## Related Resources
- https://developer.android.com/studio/publish/app-signing
- https://source.android.com/docs/security/features/apksigning