Get rid of the [[and]] around the Android stuff.
I have a full iOS version of Corona but only a trial Android and it works fine on my sons Nexus 7. I was getting the same error as you but added them lines in build settings and it started working.
EDIT, here is my build file (my code in the app is identical to yours) -
settings = {
orientation = {
default = "landscapeRight",
supported = { "landscapeRight","landscapeLeft" }
},
iphone = {
plist = {
CoronaUseIOS6IPadPhotoPickerLandscapeOnlyWorkaround = true,
UIStatusBarHidden = true,
UIPrerenderedIcon = true, -- set to false for "shine" overlay
UIApplicationExitsOnSuspend = false,
CFBundleIconFile = "Icon.png",
CFBundleIconFiles = {
"Icon.png" ,
"Icon@2x.png" ,
"Icon-72.png" ,
"Icon-72@2x.png" ,
"Icon-Small-50.png" ,
"Icon-Small-50@2x.png" ,
"Icon-Small.png" ,
"Icon-Small@2x.png" ,
},
CFBundleURLTypes = {
{
CFBundleURLSchemes =
{
"fbREMOVED",
}
}
}
}
},
--For Android:
androidPermissions = {
"android.permission.CAMERA",
"android.permission.WRITE\_EXTERNAL\_STORAGE",
},
}
Dave [import]uid: 117617 topic_id: 32620 reply_id: 129789[/import]