here is my build.settings file. Would the crash occur if my admob app id is wrong?
settings = {
splashScreen = { enable = false },
orientation = {
default = "landscapeRight",
supported = { "landscapeRight", "landscapeLeft" }
},
plugins =
{
["plugin.google.iap.billing.v2"] = { publisherId = "com.solar2d"},
["plugin.amazon.iap"] = {publisherId = "com.coronalabs", supportedPlatforms = { ["android-kindle"]=true }},
--["plugin.admob"] = { publisherId = "com.coronalabs"},
["plugin.admob"] = {publisherId = "com.coronalabs", version ="v37"},
["plugin.openssl"] ={publisherId = "com.coronalabs"},
},
iphone =
{
xcassets = "Images.xcassets",
plist = {
UIStatusBarHidden = true,
UIPrerenderedIcon = true, -- set to false for "shine" overlay
UIApplicationExitsOnSuspend = false,
UILaunchStoryboardName = "LaunchScreen", -- Required!
NSAppTransportSecurity =
{
NSExceptionDomains =
{
["stellartrek.com"] =
{
NSIncludesSubdomains = true,
NSThirdPartyExceptionAllowsInsecureHTTPLoads = true,
},
},
NSAllowsArbitraryLoads = true,
},
UIAppFonts = {
"Roddenberry.otf",
},
}
},
android =
{
usesPermissions =
{
"android.permission.INTERNET",
"android.permission.WRITE_EXTERNAL_STORAGE",
"android.permission.ACCESS_NETWORK_STATE",
"com.android.vending.BILLING",
"com.android.vending.CHECK_LICENSE",
"android.permission.VIBRATE",
},
applicationChildElements =
{
[[<meta-data android:name="com.google.android.gms.ads.APPLICATION_ID" android:value="[ca-app-pub-97136305344xxxxx~21982xxxxx]"/>]],
},
}
}