A repository template to create new Android Kotlin apps!
Setup. Code or ask to code. Do whatever you want.
To sign your APK, create a keystore. Keep it safe.
keytool -genkeypair -v -keystore release.jks -alias ${APP_NAME} -keyalg EC -groupname secp256r1 -sigalg SHA256withECDSA -validity 10000You can upload it to GitHub Actions as Secret ANDROID_KEYSTORE_BASE64 to generate Release APKs.
base64 -w 0 release.jks ; echoThen define ANDROID_KEYSTORE_PASSWORD, ANDROID_KEY_PASSWORD (default is the same), and ANDROID_KEY_ALIAS as configured.