Hi roaminggamer I have downloaded your code. Thanks for that. I checked and compared with my code, it looks similar though. Here is my code:
---build.settings -------- android = { usesPermissions = { "android.permission.INTERNET", "android.permission.ACCESS\_NETWORK\_STATE", "android.permission.READ\_PHONE\_STATE", "com.android.vending.BILLING", "com.android.vending.CHECK\_LICENSE", "android.permission.WRITE\_EXTERNAL\_STORAGE", } }, plugins = { ["facebook"] = { publisherId = "com.coronalabs" }, ["CoronaProvider.ads.vungle"] = { publisherId = "com.vungle", }, ["plugin.google.play.services"] = { publisherId = "com.coronalabs", supportedPlatforms = { android = true } } }, ----------------- require the plugin ------ local ads = require"ads" ------------------ init the api -------- if androidPlatform then ads.init( "admob", admobAppId, adListener ) ads.init( "vungle", vungleAppId, vungleListener ) else ads.init( "admob", admobAppId, adListener ) ads.init( "vungle", vungleAppId, vungleListener ) end providersPriorities[1] = "admob" providersPriorities[2] = "vungle" ------------------- code load ads ------- currentProvider = 1 local params = { isAnimated = true, isAutoRotation = true, } ads:setCurrentProvider( providersPriorities[currentProvider] ) ads.load( "interstitial", params ) ---------------------- show it when available ------ ads.show("interstitial")
I’ve just downloaded the stable release SDK and it works fine for the ads plugin but it has a bug with the scrollView.getContentPosition().
– EDITED—
Sorry, the public release sdk does not work too.