I keep on getting an error with these build settings
settings =
{
android =
{
versionCode = "2"
installLocation="preferExternal"
},
}
[import]uid: 24981 topic_id: 11773 reply_id: 311773[/import]
I keep on getting an error with these build settings
settings =
{
android =
{
versionCode = "2"
installLocation="preferExternal"
},
}
[import]uid: 24981 topic_id: 11773 reply_id: 311773[/import]
Problem solved, was just missing a comma after the version code
[code]
settings =
{
android =
{
versionCode = “2”,
installLocation=“preferExternal”
},
}
[/code] [import]uid: 24981 topic_id: 11773 reply_id: 42844[/import]