Building Signed APKs
Building signed APK's for Android is easy if you know what you are doing.
This article goes over the preparation steps and the additional build instructions needed to created signed APKs.
Preparation
First you need to have a keystore
. Use this command:
#!/bin/bash
keystore_file="my_key_store.keystore"
key_name="john_doe"
secret …