For the AdMob extension, it looks like you added some reward ads functionality? I don’t see it reflected in the docs - do you have any tips for how to use the new stuff you added?
I’ve updated the readme, but essentially you have to add an array of rewarded ads ids at the init.
Then you set a callback function for the event and you call showRewarded passing an ad id :
AdMob.onRewardedEvent = function(event:String, ?data:RewardItem){
if(event == AdMob.EARNED_REWARD)
trace("THE USER WAS REWARDED BY " + data.amount + " " + data.type);
}
AdMob.showRewarded("ca-app-pub-XXXXX123454");
We will be glad to merge our progress to haxe extensions organization asap. yet we still working on some of them and also updating IAP probably this month.
We have integrate succesfully IAP extension which is updated and works perfectly on Android Device.
Here is a link https://lib.haxe.org/p/extension-iap
I would recommend not to rely on a single ad-provider, until the day when their AI disables your account all is fine, but then its a month long struggle to get you account back.
I would recommend a mediation platform.
For me the supersonic/ironsrc extension worked very well, after a few adjustments.