Building Android
OK noticed something interesting, in my game.lua file I referenced a music filename that did not exist because I did not need it anymore. But previous version never crashed, all it would do is log it that the file does not exists but this new version both logs on console and crashed
Below is my build.settings
plugins = { -- key is the name passed to Lua's 'require()' ["plugin.GameThrivePushNotifications"] = { -- required publisherId = "com.gamethrive", }, --[[ ["CoronaProvider.ads.admob"] = { -- required publisherId = "com.coronalabs", }, ]] ["plugin.adbuddiz"] = { -- required publisherId = "com.adbuddiz", }, ["CoronaProvider.gameNetwork.google"] = { publisherId = "com.coronalabs", supportedPlatforms = { android = true }, }, ["CoronaProvider.gameNetwork.apple"] = { publisherId = "com.coronalabs", supportedPlatforms = { iphone=true, ["iphone-sim"]=true }, }, ["plugin.chartboost"] = { publisherId = "com.swipeware" }, ["plugin.google.play.services"] = { publisherId = "com.coronalabs", supportedPlatforms = { android = true }, }, ["plugin.google.iap.v3"] = { publisherId = "com.coronalabs", supportedPlatforms = { android=true } }, ["facebook"] = { publisherId = "com.coronalabs" }, },