Applovin paid does not display interstitial

I would also recommend checking the device log for errors from the plugin.

You can use the macOS ‘Console’ app for this.

  1. Select your device from the pane on the left

  2. Filter on your app name

The interesting part is to monitor what happens in the log at the time you try to show an interstitial.

Hi Ingremar, Brent,

The project is not small thats why I have not copied all source code here. Load is called somewhere else with the same parameters.

The most interesting thing is if I switch back to free version it starts to work again.

I will try to reproduce this is a simple project.

PS. Console does not show anything when I call show, as I said isLoaded is true but show does not work.

Thank you.

Hi @bulupe,

You’re not including both versions in your “build.settings” are you?

Did you try our AppLovin sample app (link near the top of the documentation) and substitute your own key in there to test?

Brent

Hi Brent,

  • No, I am not .

  • I tried and its working thats why I suspect that there might be a conflict with some other plugin in real project.

Now I am trying to reproduce this in a simpler project.

Thank you.

@bulupe

Can you post your entire build.settings file, please?

It might help us identify your issue.

settings = {   splashScreen =   {     ios = {       enable = true,       image = "scl\_splash.png"     },     android = {       enable = true,       image = "scl\_splash.png"     }   },         orientation =   {     default = "portrait",     supported = { "portrait", }   },        excludeFiles =   {     all = { "\*secret.txt" },   },         --   -- iOS Section   --   iphone =   {     plist =     {       CFBundleShortVersionString = "5.5.5",       ITSAppUsesNonExemptEncryption = false,       UIStatusBarHidden = false,       UIPrerenderedIcon = true,       UILaunchStoryboardName = 'launchscreen',       UIApplicationExitsOnSuspend = false,                    CFBundleDisplayName = "Game",       CFBundleName = "Game",       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 =         {           ["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 = "0000",       CFBundleURLTypes =       {         { CFBundleURLSchemes = { "fb0000", } }        },       LSApplicationQueriesSchemes =       {         "fb",         "fbapi",         "fbauth2",         "fb-messenger-api",         "fbshareextension"       },     },   },     --   -- Android Section   --   android =   {     usesPermissions =     {       "android.permission.INTERNET",       "com.android.vending.CHECK\_LICENSE",       "com.android.vending.BILLING",     },     facebookAppId = "00000",     googlePlayGamesAppId = "00000"   },     -- Plugins Section   plugins =   {     ["plugin.gpgs"] =     {       publisherId = "com.coronalabs",       supportedPlatforms = {android=true }     },     ["CoronaProvider.gameNetwork.apple"] =     {       publisherId = "com.coronalabs",       supportedPlatforms = { iphone=true}     },     ["plugin.OneSignal"] =     {       publisherId = "com.onesignal"     },     ["plugin.applovin.paid"] =     {       publisherId = "com.coronalabs"     },     ["plugin.admob"] =     {       publisherId = "com.coronalabs"     },     ["plugin.math2d"] =      {       publisherId = "com.roaminggamer"      },     ["plugin.googleAnalytics"] =     {       publisherId = "com.coronalabs"     },     ["plugin.facebook.v4"] =     {       publisherId = "com.coronalabs",       supportedPlatforms = { iphone=true, android=true }     },     ["CoronaProvider.native.popup.social"] =     {       publisherId = "com.coronalabs",       supportedPlatforms = { iphone=true, android=true }     },     ["CoronaProvider.native.popup.activity"] =     {       publisherId = "com.coronalabs",       supportedPlatforms = { iphone=true }     },     ["plugin.kochava.faa"] =     {       publisherId = "com.coronalabs"     },     ["plugin.google.iap.v3"] =     {       publisherId = "com.coronalabs",       supportedPlatforms = { android=true }     },       },  }

@bulupe

Thanks for the settings.

However, I tried a sample app by including all of the plugins you use (except math2d), but I still cannot reproduce your issue.

Rewarded videos and interstitial ads load and display properly.

@bulupe

Thanks for the PM with a sample project.

I’ll have a look and get back to you.

@bulupe

I’ve identified the problem within the plugin. I’ll fix it and notify you on this thread when it’s live on the build server.

Sorry for the inconvenience.

@bulupe

The changes are live. Please try again :slight_smile:

Thank you, It seems to be working now, we will do more tests. Btw what was it related to, a plugin?

Thank you