Skip to content

Commit

Permalink
MBL-1596: Remove debug.keystore from source code (#2077)
Browse files Browse the repository at this point in the history
* Delete app/debug.keystore

* added Automatic Debug Signing instead of using an in home `debug.keystore` the build tools (Gradle and the Android SDK) automatically use a debug keystore that is generated and managed for you. This keystore is typically located in ~/.android/debug.keystore (on Linux/Mac)
  • Loading branch information
Arkariang authored Jul 18, 2024
1 parent 3a59f71 commit b632bb7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ android {

signingConfigs {
debug {
storeFile file("debug.keystore")
storeFile file(System.env.HOME + '/.android/debug.keystore')
}
release {
storeFile file(project.signing.storeFilePath)
Expand Down
Binary file removed app/debug.keystore
Binary file not shown.

0 comments on commit b632bb7

Please sign in to comment.