Sure Brent, here it is:
– Supported values for orientation:
– portrait, portraitUpsideDown, landscapeLeft, landscapeRight
settings =
    {
    orientation =
        {
        default = “portrait”,
        supported = { “portrait”,“portraitUpsideDown”, }
        },
    
    plugins =
        {
        --[“CoronaProvider.ads.iads”] = { publisherId = “com.coronalabs”, },
        --[“CoronaProvider.ads.admob”] = { publisherId = “com.coronalabs”, },
        [“plugin.google.play.services”] = {publisherId = “com.coronalabs” },
        --[“plugin.sponsorpay”] = { publisherId = “com.sponsorpay”,},
        [“facebook”] = { publisherId = “com.coronalabs”, supportedPlatforms = { iphone=true, [“iphone-sim”]=true } },        
        [“CoronaProvider.native.popup.social”] = { publisherId = “com.coronalabs”, },        
        },  
    
    iphone = {
        components = {},
        plist =
            {
            CFBundleIconFile = “Icon.png”,
            CFBundleIconFiles =
                {
                “Icon.png”,
                “Icon@2x.png”,
                “Icon-60.png”,
                “Icon-60@2x.png”,
                “Icon-72.png”,
                “Icon-72@2x.png”,
                “Icon-76.png”,
                “Icon-76@2x.png”,
                },
            UIAppFonts =
                {
                “ARIALN.ttf”, “BADABB__.ttf”,
                },
            CFBundleIdentifier = “com.ubj3d.umof”, --free ima f na kraju
            
            UIApplicationExitsOnSuspend = false,
            UIViewControllerBasedStatusBarAppearance = false,
            UIStatusBarHidden = true,
            UIPrerenderedIcon = true, – set to false for “shine” overlay
            CoronaUseIOS6LandscapeOnlyWorkaround = true,
            FacebookAppID = “xxxxxxxxxx”,
            – iOS app URL schemes:
            CFBundleURLTypes =
            {
                {
                CFBundleURLSchemes =
                    {
                    “fbxxxxxxxxxx”,
                    }
                }
            }
            
        }
    },
    
    
    androidPermissions =
        {
        “android.permission.INTERNET”,
        “android.permission.ACCESS_NETWORK_STATE”,
        },
    
    android =
       {
        supportsScreens =
            {
            smallScreens = true,
            normalScreens = true,
            largeScreens = true,
            xlargeScreens = true
            }
       },
}
Regards,
Damir.
P.S. Did you had time to look at the first issues I reported? (first ad not displayed)