I downloaded latest zip from github
local cb = require “chartboost”
cb.create{appId = “5304ee362d42da5a1a7565de”,
appSignature = “APP-SIGNATURE”,
delegate = nil,
appVersion = “1.0”}
cb.startSession()
Im getting above error when I launch the game
I addedchartboost.lua, chartboost_internal.lua, and the seven included image files to my folder.
What am I not doing?
I got the same problem as you but was able to solve it by putting all chartboost files inside a folder called ChartboostSDK and then use it like this,
local cb = require “ChartboostSDK.chartboost”
Then it’s working, no idea why though.
I got the same problem as you but was able to solve it by putting all chartboost files inside a folder called ChartboostSDK and then use it like this,
local cb = require “ChartboostSDK.chartboost”
Then it’s working, no idea why though.