Skip to content

Commit 8d1ceac

Browse files
Fix build pipeline
1 parent b7e846a commit 8d1ceac

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ android {
5757
signingConfigs {
5858
release {
5959
Properties properties = new Properties()
60-
properties.load(project.rootProject.file('local.properties').newDataInputStream())
60+
properties.load(project.rootProject.file('keystore.properties').newDataInputStream())
6161

6262
storeFile file("${properties.getProperty('RELEASE_STORE_FILE')}")
6363
storePassword "${properties.getProperty('RELEASE_STORE_PASSWORD')}"

keystore.properties

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
RELEASE_KEY_ALIAS=RemindeeRelease
2+
RELEASE_KEY_PASSWORD=R3m1nd33
3+
RELEASE_STORE_FILE=../keystore/remindee_release.jks
4+
RELEASE_STORE_PASSWORD=R3m1nd33

0 commit comments

Comments
 (0)