onAdDismissed not called in unity in case of rewarded ads
niraj-prajapati opened this issue · 2 comments
niraj-prajapati commented
here in case of rewarded ads, else bloc will never be called
easy-ads/lib/src/easy_unity/easy_unity_ad.dart
Lines 76 to 83 in 7f2b091
may be it should be like this
void onCompleteUnityAd(String s) {
_isAdLoaded = false;
if (adUnitType == AdUnitType.rewarded) {
onEarnedReward?.call(adNetwork, adUnitType, null, null);
}
onAdDismissed?.call(adNetwork, adUnitType, null);
}
nooralibutt commented
Will check this and let u know