Hello, I am new to this platform and I want to know where can I grab the .apk file for release, as well as editing the app icons.
Hi alberto, good question.
A project set up for signing look like this:
...
"Android": {
"Package": "com.test.MyTest",
"VersionCode": 100,
"VersionName": "1.0.0",
"Key": {
"Alias": "application",
"AliasPassword": "android",
"Store": "release.keystore",
"StorePassword": "android"
}
},
...
A file named release.keystore is expected to be found in the same folder as your unoproj. This file can be created using the command:
keytool -genkey -v -keystore release.keystore -alias application -keyalg RSA -keysize 2048 -validity 10000
Note that only release builds are signed using your specified key. (Debug builds are automatically signed using a debug key)
Then once you have built done a release build
of your project you can find the result under the .build/Android-Release/bin
folder.
Actually we even have a guide for this https://www.fusetools.com/learn/uno#android-signing-signing-for-android - you’ll also find answers to your icon question there.