Hey everyone I’ve got a few questions about the process of exporting an App to the Google Playstore. I’ve found in the Docs of Fuse this page: https://www.fusetools.com/docs/preview-and-export/signing which helps me and confuses me at the same time.
First of all: should I add these lines:
{
"Android": {
"Key": {
"Alias": "application",
"AliasPassword": "Android",
"Store": "release.keystore",
"StorePassword": "Android"
}
}
}
to my uno project file? So that it looks like this:
{
"RootNamespace":"",
"Packages": [
"Fuse",
"FuseJS"
],
"Includes": [
"*",
"**.js:Bundle"
]
},
{
"Android": {
"Key": {
"Alias": "application",
"AliasPassword": "Android",
"Store": "release.keystore",
"StorePassword": "Android"
}
}
}
And should I change the values of “Alias”, “AliasPassword” and so on to stuff I come up with?
For the part of generating the release.keystore file: After running the command in the shell it asks me first for a keystore password. Should I come up with some stuff here as well or is that somewhere to be found? Just made myself a developer account at Google yesterday so I’m super new to all this stuff.
Thanks for your help