The thing is the old chartboostSDK that ran in Corona (which I currently use on Android) worked fine, even in the simulator. While this one I have no clue what’s going on and keeps failing.
It had a lot of reporting going on
local delegate = {
shouldRequestInterstitial = function(location) print("Chartboost: shouldRequestInterstitial " … location … “?”); return true end,
shouldDisplayInterstitial = function(location) print("Chartboost: shouldDisplayInterstitial " … location … “?”); return true end,
didCacheInterstitial = function(location) print("Chartboost: didCacheInterstitial " … location); return end,
didFailToLoadInterstitial = function(location, error) print(“Chartboost: didFailToLoadInterstitial " … location)
if error then print(” Error: " … error) end end,
didDismissInterstitial = function(location) print("Chartboost: didDismissInterstitial " … location); return end,
didCloseInterstitial = function(location) print("Chartboost: didCloseInterstitial " … location); return end,
didClickInterstitial = function(location) print("Chartboost: didClickInterstitial " … location); return end,
didShowInterstitial = function(location) print(“Chartboost: didShowInterstitial " … location); return end,
shouldDisplayLoadingViewForMoreApps = function() return true end,
shouldRequestMoreApps = function() print(“Chartboost: shouldRequestMoreApps”); return true end,
shouldDisplayMoreApps = function() print(“Chartboost: shouldDisplayMoreApps”); return true end,
didCacheMoreApps = function(error) print(“Chartboost: didCacheMoreApps”)
if error then print(” Error: " … error) end end,
didFailToLoadMoreApps = function(error) print("Chartboost: didFailToLoadMoreApps: " … error); return end,
didDismissMoreApps = function() print(“Chartboost: didDismissMoreApps”); return end,
didCloseMoreApps = function() print(“Chartboost: didCloseMoreApps”); return end,
didClickMoreApps = function() print(“Chartboost: didClickMoreApps”); return end,
didShowMoreApps = function() print(“Chartboost: didShowMoreApps”); return end,
shouldRequestInterstitialsInFirstSession = function() return true end,
didFailToLoadUrl = function(url, error) print(“Chartboost:didFailToLoadUrl: " … tostring(url))
if error then print(” Error: " … error) end end
}