app-release-unsigned.apk how to sign code example
Example 1: app release apk
keytool -genkey -v -keystore ~/key.jks -keyalg RSA -keysize 2048 -validity 10000 -alias key
Example 2: difference between signed apk and unsigned apk
Signing Android apps is just like signing any other application;
it provides the user with some level of assurance that the code hasn't
been tampered with since you released it.
Unsigned apps should be usable generally but do require lowering the
security level. A quick Google search found a number of articles that
explained that all you have to do is check the Unknown Sources box in
Settings->Security.