-
Chartboost 4.4
The new Chartboost sdk has a one line implementation:
[Chartboost startWithAppId:@"YOUR_CHARTBOOST_APP_ID" appSignature:@"YOUR_CHARTBOOST_APP_SIGNATURE" delegate:self];
For some reason my app doesn't like it at all, it's the "delegate:self" part that doesn't work. And i tried googling, but couldn't find anyone else with this problem, perhaps any of you do?
I also spent a long time trying to create my own first extension today, (cache and show chartboost ad for ios, after manual implementation) i got as far as having the extension with actions available, and it did include my files with the iOS export, however it didn't work for some reason, i also got a ton of errors compiling the .mfx, and it crashes the runtime immidiately when i try running it from fusion. If however someone knows what they are doing, i am sure this extension should take minutes to create.. hint hint.. ;)
-
Chartboost 4.4
There is some chartboost ios threads but I dont know why, Anders dont reply from a long time. We need chartboost object for ios too. Mayke Anders its Busy, I dont know
-
There is no Chartboost for MF 2.5 and 2.5 Dev. Only for Android.
-
you can add it to xcode after exporting from fusion, but the last sdk (4.4) doesn't work for me, older sdk's still work.
-
ooh. I did not know that, nor have no clue how to do things in Xcode.
-
You can add but you cant control chartboost ads.....where is Anders?
-
we have waited a long time.. i am attempting to resolve that part myself ;) If the implementation of sdk 4.4 works, i'll go for that, otherwise i could perhaps make the extension support sdk 4.3- (i'll modify the old ios chartboost extension by Sam Beddoes, to make it support cache and show ads with the android chartboost extension after manual implementation in xcode)
-
Good to know my friend...thanks
But will be better if Anders use same Charboost object used on Android exporter....then will be much more easy to make work with both iOS and Android.....
I dont want to insert two chartboost objects on each frame.... XD
A Admob object port to iOS exporter will be a good thing too!
Best regards
-
My modification uses the current ChartBoost object ;)
The error i get in xcode when trying to implement sdk 4.4 is:
Cannot initialize a parameter of type 'id<ChartboostDelegate>' with an lvalue of type 'RuntimeIPhoneAppDelegate *'
(When adding the line i said before, it doesn't like passing "self" as a delegate)
If anyone know's how to fix this, please tell. I also sent an email to chartboost support, so it should be good soon.
-
Look my friend.....I just can thank you! Amazing news! Good look...I dont know how to make extensions. This modification it's hard? Maybe I can try to do same thing with Admob object. If Chartboost support dont solve you problem, maybe you can send a PM to Anders to help you.
Best regards
-
i think it could work similarly with other objects converting from one platform to another. Most android extensions are open-source'ish in the runtime, and you don't need the original source of the .mfx to package an ios .ext, so by looking at the code in the android version, it's plausible to make your own ios version of the extension, which is what i am trying to do now.
i don't know the in-and-outs, so i am just doing it as simple as possible. You would still have to implement the ChartBoost SDK manually in xcode, but i make the runtime fire off the code snippets needed, f.ex the code to show an interstitial with named location is:
[[Chartboost sharedChartboost] showInterstitial:[act getParamExpString:rh withNum:0]];
(from the chartboost instructions) ([act... fetches the string you input when making the "show interstitial" action in fusion)