Hi Scott,
Thanks for reply, looking at the analytics data it seems to have no effect on users but I am still worried. I guess it might be related to Applovin or Admob plugins I am using. Here is the build settings;
settings =
{
splashScreen =
{
ios = {
enable = true,
image = "scl_splash.png"
},
android = {
enable = true,
image = "scl_splash.png"
}
},
orientation =
{
default = "portrait",
supported = { "portrait", }
},
--
-- iOS Section
--
iphone =
{
iCloud = true,
plist =
{
CFBundleShortVersionString = "2.3.2",
MinimumOSVersion = "7.0",
ITSAppUsesNonExemptEncryption = false,
UIStatusBarHidden = false,
UIPrerenderedIcon = true,
UILaunchStoryboardName = 'launchscreen',
UIBackgroundModes = {'remote-notification'},
UIApplicationExitsOnSuspend = false,
CFBundleDisplayName = "*****",
CFBundleName = "*****",
CFBundleIconFiles = {
"Icon.png",
"Icon@2x.png",
"Icon-60.png",
"Icon-60@2x.png",
"Icon-60@3x.png",
"Icon-72.png",
"Icon-72@2x.png",
"Icon-76.png",
"Icon-76@2x.png",
"Icon-167.png",
"Icon-Small-40.png",
"Icon-Small-40@2x.png",
"Icon-Small-50.png",
"Icon-Small-50@2x.png",
"Icon-Small.png",
"Icon-Small@2x.png",
"Icon-Small@3x.png"
},
UIBackgroundModes = {"remote-notification"},
UILaunchImages = {
{ -- iPhone 4 Portrait
["UILaunchImageMinimumOSVersion"] = "7.0",
["UILaunchImageName"] = "Default",
["UILaunchImageOrientation"] = "Portrait",
["UILaunchImageSize"] = "{320, 480}"
},
{ -- iPhone 5 Portrait
["UILaunchImageMinimumOSVersion"] = "7.0",
["UILaunchImageName"] = "Default-568h",
["UILaunchImageOrientation"] = "Portrait",
["UILaunchImageSize"] = "{320, 568}"
},
{ -- iPad Portrait
["UILaunchImageMinimumOSVersion"] = "7.0",
["UILaunchImageName"] = "Default-Portrait",
["UILaunchImageOrientation"] = "Portrait",
["UILaunchImageSize"] = "{768, 1024}"
},
{ -- iPhone 6 Portrait
["UILaunchImageMinimumOSVersion"] = "8.0",
["UILaunchImageName"] = "Default-667h",
["UILaunchImageOrientation"] = "Portrait",
["UILaunchImageSize"] = "{375, 667}"
},
{ -- iPhone 6 Plus Portrait
["UILaunchImageMinimumOSVersion"] = "8.0",
["UILaunchImageName"] = "Default-736h",
["UILaunchImageOrientation"] = "Portrait",
["UILaunchImageSize"] = "{414, 736}"
},
{ -- iPad Pro Portrait
["UILaunchImageMinimumOSVersion"] = "9.0",
["UILaunchImageName"] = "Default-Portrait-1366",
["UILaunchImageOrientation"] = "Portrait",
["UILaunchImageSize"] = "{1024, 1366}"
},
},
NSAppTransportSecurity =
{
NSAllowsArbitraryLoads=true,
NSExceptionDomains =
{
["********"] =
{
NSIncludesSubdomains = true,
NSThirdPartyExceptionAllowsInsecureHTTPLoads = true,
},
["192.168.56.101"] =
{
NSIncludesSubdomains = true,
NSThirdPartyExceptionAllowsInsecureHTTPLoads = true,
},
}
},
NSCalendarsUsageDescription = "No need for calendar.",
NSPhotoLibraryUsageDescription = "This app would like to save screenshots.",
NSCameraUsageDescription = "No need for camera.",
FacebookAppID = "***********",
CFBundleURLTypes =
{
{ CFBundleURLSchemes = { "***************", } }
},
LSApplicationQueriesSchemes =
{
"fb",
"fbapi",
"fbauth2",
"fb-messenger-api",
"fbshareextension"
},
},
},
--
-- Android Section
--
android =
{
usesPermissions =
{
"android.permission.INTERNET",
},
facebookAppId = "*************"
},
-- Plugins Section
plugins =
{
["plugin.applovin"] =
{
publisherId = "com.coronalabs"
},
["plugin.admob"] =
{
publisherId = "com.coronalabs"
},
["plugin.math2d"] =
{
publisherId = "com.roaminggamer"
},
["plugin.hockey"] =
{
publisherId = "com.coronalabs"
},
["plugin.openudid"] =
{
publisherId = "com.coronalabs",
supportedPlatforms = { iphone=true },
},
["plugin.googleAnalytics"] =
{
publisherId = "com.coronalabs"
},
["plugin.iCloud"] =
{
publisherId = "com.coronalabs"
},
["plugin.facebook.v4"] =
{
publisherId = "com.coronalabs"
},
["CoronaProvider.native.popup.social"] =
{
publisherId = "com.coronalabs"
},
["CoronaProvider.native.popup.activity"] =
{
publisherId = "com.coronalabs",
supportedPlatforms = { iphone=true }
},
},
}