Skip to content

Building a signed APK

MarcDufresne edited this page Dec 18, 2013 · 1 revision

To build a signed APK all you need to do is add a file named signed.properties in the root of the project. The content must be like so:

STORE_FILE=PATH/TO/KEYSTORE
STORE_PASSWORD=KEYSTORE_PASSWORD
KEY_ALIAS=KEY_NAME
KEY_PASSWORD=KEY_PASSWORD

Then, just run gradle build (or gradlew build) from the command line.

Clone this wiki locally