Skip to content

Commit

Permalink
add default keystore
Browse files Browse the repository at this point in the history
  • Loading branch information
hajoha committed Jun 3, 2024
1 parent 2329d7d commit 9e3eb13
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@ def keystoreProperties = new Properties()
def keystorePropertiesFile = rootProject.file('android/key.properties')
if (keystorePropertiesFile.exists()) {
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
} else {
project.logger.warn("File not found: ${keystorePropertiesFile}")
project.logger.warn("Using default values for signing config.")
keystoreProperties['keyAlias'] = "omnt_default"
keystoreProperties['keyPassword'] = "omnt2024"
keystoreProperties['storeFile'] = file("omnt_default.jks")
keystoreProperties['storePassword'] = "omnt2024"
}


Expand Down
Binary file added app/omnt_default.jks
Binary file not shown.

0 comments on commit 9e3eb13

Please sign in to comment.