New android version not working?

Hey all, So I’m trying to update my android app with a new version but I’m getting this error:

The new apk’s versionCode (1) in AndroidManifest.xml must be higher than the old apk’s versionCode (1).

Below is what I have added to my config.lua file but still wont work?

Any suggestions?

Thanks!

settings =
{
android =
{
versionCode = “2”
},
} [import]uid: 10062 topic_id: 4612 reply_id: 304612[/import]

Get rid of the extra comma so it looks like this:

settings =
{
android =
{
versionCode = “2”
}
} [import]uid: 11024 topic_id: 4612 reply_id: 14551[/import]

Thanks finnk! I just had to put it in the build.settings.

Thanks again! [import]uid: 10062 topic_id: 4612 reply_id: 14553[/import]