I tried using the plugin but, it does not work.
here is the main.lua
local chartboost = require( "plugin.chartboost" ) -- Your Chartboost app id and signature for iOS local yourAppID = "xxxxxxxxxxxxxxxxxxxxx" local yourAppSignature = "xxxxxxxxxxxxxxxxxxxxx" -- Change the appid/sig for Android if system.getInfo( "platformName" ) == "Android" then yourAppID = "xxxxxxxxxxxxxxxxxxxxx" yourAppSignature = "xxxxxxxxxxxxxxxxxxxxx" end print("Chartboost plugin version: ".. chartboost.getPluginVersion()) print("Using ("..yourAppID..")("..yourAppSignature..")") -- Initialise ChartBoost chartboost.init { appID = yourAppID, appSignature = yourAppSignature, listener = chartBoostListener } -- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -- IMPORTANT! YOU MUST CALL chartboost.startSession() IN YOUR OWN CODE AS BELOW TO ENSURE PROPER PLUGIN BEHAVIOR -- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! chartboost.startSession()
and build.settings
plugins = { ["plugin.google.play.services"] = { publisherId = "com.coronalabs" }, ["plugin.chartboost"] = { publisherId = "com.swipeware" }, ["plugin.google.play.services"] = { publisherId = "com.coronalabs", supportedPlatforms = { android = true } } },