So I was having the Corona simulator ( Windows) crashing when I did Android builds for my project. I thought I would post to save someone the 30 minutes it took for me to figure this out … here is a part of my build.settings file
androidPermissions =
{
“android.permission.CAMERA”
“android.permission.VIBRATE”
},
Do you see the issue ? The problem is that you MUST have a COMMA between the permissions
Correct CODE
androidPermissions =
{
“android.permission.CAMERA” ,
“android.permission.VIBRATE”
},
It would be nice if the build system gave an error message rather then crashing the simulator.
Ken
Curved Light Solutions LLC [import]uid: 112538 topic_id: 24717 reply_id: 324717[/import]
[import]uid: 11860 topic_id: 24717 reply_id: 100198[/import]