I am ready to build the first release of my game for Android, and I just want to be sure I am doing this right. Here is my build.settings:
-- Supported values for orientation:
-- portrait, portraitUpsideDown, landscapeLeft, landscapeRight
settings = {
orientation = {
default = "portrait",
supported = { "portrait", }
},
iphone = {
plist = {
UIStatusBarHidden = false,
UIPrerenderedIcon = true, -- set to false for "shine" overlay
UIApplicationExitsOnSuspend = true,
}
},
-- For Android:
android =
{
versionCode="10",
versionName="1.0",
},
androidPermissions = {
"android.permission.INTERNET",
},
}
When I go to build for Android, the dialog box pops up, but the Version Code is 1 (not 10). It seems like versionCode and versionName are not being populated from teh build.settings file.
Do still need to enter the correct values on the Build screen? Aren’t they supposed to be populated automatically?
thanks! [import]uid: 114363 topic_id: 22355 reply_id: 322355[/import]
[import]uid: 52491 topic_id: 22355 reply_id: 89238[/import]