I've implemented revmob into my project, but i get this error, what can cause it?
private static readonly Dictionary REVMOB_APP_IDS = new Dictionary () {
{ "Android", "55058f85a7eb28be4fd37xxx"},
{ "IOS", "55058f50a7eb28be4fd37xxx" }
};
private RevMob revmob;
// Use this for initialization
void Start () {
end.enabled = false;
RevMobBanner banner = revmob.CreateBanner(RevMob.Position.TOP, 0, 0, 350, 50);
}
void Awake() {
revmob = RevMob.Start(REVMOB_APP_IDS, "Ads");
}
↧