We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7e846a commit 8d1ceacCopy full SHA for 8d1ceac
app/build.gradle
@@ -57,7 +57,7 @@ android {
57
signingConfigs {
58
release {
59
Properties properties = new Properties()
60
- properties.load(project.rootProject.file('local.properties').newDataInputStream())
+ properties.load(project.rootProject.file('keystore.properties').newDataInputStream())
61
62
storeFile file("${properties.getProperty('RELEASE_STORE_FILE')}")
63
storePassword "${properties.getProperty('RELEASE_STORE_PASSWORD')}"
keystore.properties
@@ -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