Hi,
I’d like to make a build for the android store. So i started with generating a .keystore file, which i did with keytool and the following command:
keytool -genkey -v -keystore android_release_key.keystore -alias release_key -keyalg RSA -keysize 2048 -validity 20000
after I filled in the fields (well, I left some of them; I think this shouldn’t be the problem) i built the app with the new .keystore instead of the debug keystore.
Then I tried to upload the app to the market, which gave me the following error:
“market requires versioncode to be set to a positive 32-bit”, well my builtsettings.lua file looks like that:
settings =
{
iphone =
{
plist =
{
CFBundleIconFile = “Icon.png”,
CFBundleIconFiles = {
“Icon.png” ,
“Icon@2x.png” ,
“Icon-72.png” ,
},
},
},
android =
{
versionCode = “90”,
versionName = “0.9”,
},
}
which, I suppose shouldn’t be the problem either.
Than I tried downloaded the generated .apk, to try if it would work on the device. It didn’t. While installing i got a message on the screen, that the application wasn’t installed. Than I just changed again back to the androiddebugkey and it worked on the device again.
Where is my mistake? [import]uid: 68079 topic_id: 18231 reply_id: 318231[/import]
[import]uid: 52491 topic_id: 18231 reply_id: 70022[/import]