Skip to content

Commit

Permalink
Fix build pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
wisnukurniawan committed Jun 14, 2022
1 parent b7e846a commit 8d1ceac
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ android {
signingConfigs {
release {
Properties properties = new Properties()
properties.load(project.rootProject.file('local.properties').newDataInputStream())
properties.load(project.rootProject.file('keystore.properties').newDataInputStream())

storeFile file("${properties.getProperty('RELEASE_STORE_FILE')}")
storePassword "${properties.getProperty('RELEASE_STORE_PASSWORD')}"
Expand Down
4 changes: 4 additions & 0 deletions keystore.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
RELEASE_KEY_ALIAS=RemindeeRelease
RELEASE_KEY_PASSWORD=R3m1nd33
RELEASE_STORE_FILE=../keystore/remindee_release.jks
RELEASE_STORE_PASSWORD=R3m1nd33

0 comments on commit 8d1ceac

Please sign in to comment.