Skip to content
Benjamin Ran edited this page Dec 20, 2015 · 1 revision

Release APK Signing

Keystore information for signing the release APK is specified in gradle.properties using the keys appKeystore, appKeystorePassword, appKeyAlias, and appKeyPassword. Builds in environments without access to the keystore will not fail but the release APK will be left unsigned.

app/gradle.properties:

appKeystore=/path/to.keystore
appKeystorePassword=foo
appKeyAlias=bar
appKeyPassword=baz

Of course, the actual gradle.properties isn't committed to GitHub.

APKs Generated

There only 2 variants: debug and release.

The release apk is built to app/build/output/apk/app-release.apk with package com.bran.intune.

The debug apk is built to app/build/output/apk/app-debug.apk with package com.bran.intune.debug.

Clone this wiki locally