Rob - I am using inneractive with full screen ad but the ad is not showing when the status bar is showing. Inneractive is only initialized.
I think in general it is showing the status bar no matter what only not over the splash screen because of that line in build.settings.
I will see if I can use one of the corona samples to reproduce that. But you guys can do the same.
My build.settings:
settings =
{
orientation =
{
default = “landscapeRight”,
content = “landscapeRight”,
supported =
{
“landscapeLeft”,
“landscapeRight”,
},
},
plugins =
{
– key is the name passed to Lua’s ‘require()’
[“CoronaProvider.ads.inneractive”] =
{
– required
publisherId = “com.inner-active”,
},
},
android =
{
versionCode = “10” – for version 1.0
},
androidPermissions =
{
“android.permission.INTERNET”,
“android.permission.WRITE_EXTERNAL_STORAGE”, --to save screenshots to photo library
},
iphone =
{
plist =
{
CFBundleIconFiles =
{
“Icon.png” ,
“Icon@2x.png” ,
“Icon-72.png” ,
“Icon-Small.png”,
“Icon-Small@2x.png”,
“Icon-Small-50.png”,
“iTunesArtwork”,
},
UIPrerenderedIcon = true,
UIStatusBarHidden = true,
UIApplicationExitsOnSuspend = true, --forces app to relaunch from start after suspend
CFBundleDisplayName = “my app name”, --sets name under the icon
CFBundleVersion = “1.0”,
},
},
}
my config.lua is the one you recommend using:
–calculate the aspect ratio of the device
local aspectRatio = display.pixelHeight / display.pixelWidth
application = {
content = {
width = aspectRatio > 1.5 and 800 or math.ceil( 1200 / aspectRatio ),
height = aspectRatio < 1.5 and 1200 or math.ceil( 800 * aspectRatio ),
scale = “letterBox”,
fps = 30,
imageSuffix = {
["@2x"] = 1.3,
},
},
}