local FacebookAppID = "111111111111111" settings = { orientation = { default = "portrait", supported = { "portrait"} }, plugins = { ["CoronaProvider.native.popup.social"] = { publisherId = "com.coronalabs", }, }, iphone = { plist = { UIStatusBarHidden = true, CFBundleShortVersionString = "0.2.24", CFBundleVersion = "0.0.5", CFBundleIdentifier = "com.myapp.dev", UIPrerenderedIcon = true, UIApplicationExitsOnSuspend = false, CFBundleDisplayName = "myapp", CFBundleIconFile = "Icon.png", MinimumOSVersion = "5.0", UIAppFonts = { }, FacebookAppID = FacebookAppID, CFBundleURLTypes = { { CFBundleURLSchemes = { "fb" .. FacebookAppID, }, }, }, CFBundleIconFiles = { "Icon.png" , "Icon-72.png", "Icon-512.png", "Icon@2x.png" }, }, components = {} }, android = { versionCode = "10", usesPermissions = { "android.permission.INTERNET", "android.permission.ACCESS\_FINE\_LOCATION", "android.permission.ACCESS\_COARSE\_LOCATION", "android.permission.CAMERA", "android.permission.WRITE\_EXTERNAL\_STORAGE", }, usesFeatures = { { name = "android.hardware.location", required = false }, { name = "android.hardware.location.gps", required = false }, { name = "android.hardware.location.network", required = false }, { name = "android.hardware.camera", required = true }, { name = "android.hardware.camera.front", required = false }, }, intentFilters = { { label = "myapp", actions = { "android.intent.action.VIEW" }, categories = { "android.intent.category.DEFAULT", "android.intent.category.BROWSABLE", }, data = { scheme = "myapp" }, }, }, }, }