simple hydration reminder app
https://play.google.com/store/apps/details?id=at.florianschuster.hydro
- Set up signing
- put
keystore.jks
intoapp
folder - add
signingKeyAlias
,signingKeyPassword
,signingStorePassword
tolocal.properties
- put
- Execute
./gradlew :app:assembleRelease
- Set up signing by adding the following secrets to github:
KEYSTORE_ENCRYPTED
: base64 encryptedkeystore.jks
file (base64 -i [Jks FilePath] -o [EncodeFilePath].txt
)KEYSTORE_KEY_ALIAS
: key aliasKEYSTORE_KEY_PASSWORD
: key passwordKEYSTORE_STORE_PASSWORD
: store password
- Push a new commit with version tag (e.g.
v2.0.0-b36
) todevelop
branch
Generate a new profile with ./gradlew :app:generateReleaseBaselineProfile
.