//Create a new empty VRVME Object, required to add additional parameters, rewarded only
VungleRewardedVideoMediationExtras VungleExtras = new VungleRewardedVideoMediationExtras();
//Same as above, all placements must be passed at all times, as Admob doesn't initlize Vungle until admob calls it
VungleExtras.SetAllPlacements(new string[] { vungleReward, vungleDefault });// Create a NendNormalMediationExtras instance.
var nendExtras = new NendNormalMediationExtras();
nendExtras.InterstitialType = NendNormalMediationExtras.interstitialTypeVideo; // Required // Create an empty ad request with extra parameters required to load Vungle
AdRequest request = new AdRequest.Builder().AddMediationExtras(VungleExtras).Build();
//Loads an ad with the above parameters
rewardBasedVideo.LoadAd(request, adUnitId);--
---
You received this message because you are subscribed to the Google Groups "Google Mobile Ads SDK Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-admob-ads-sdk+unsub...@googlegroups.com.
To post to this group, send email to google-admob-ads-sdk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-admob-ads-sdk/4113a938-6f68-4540-bdae-97f648e16d5a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
---
You received this message because you are subscribed to the Google Groups "Google Mobile Ads SDK Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-admob-ads-sdk+unsub...@googlegroups.com.
To post to this group, send email to google-admob-ads-sdk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-admob-ads-sdk/eaac6e43-6cd6-46d7-b772-e244b6315ab2%40googlegroups.com.

--
---
You received this message because you are subscribed to the Google Groups "Google Mobile Ads SDK Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-admob-ads-sdk+unsub...@googlegroups.com.
To post to this group, send email to google-admob-ads-sdk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-admob-ads-sdk/e927b010-eaa2-4399-aaf1-8540bf6003d2%40googlegroups.com.
So currently we can't use Nend to display Reward Ads ? or is the extras are not necessary to do so ? as far as i know i followed their documentation step by step and i still never seen a Nend Ad, even in a mediation group that only contain Nend (and default AdMob), the publisher we're working with requested Nend and has been waiting for its implementation for over 2 weeks now, i would really appreciate it if you confirm or deny their RewardAds usability at the moment.Thank you!
--
---
You received this message because you are subscribed to the Google Groups "Google Mobile Ads SDK Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-admob-ads-sdk+unsub...@googlegroups.com.
To post to this group, send email to google-admob-ads-sdk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-admob-ads-sdk/c954934e-6353-4ac8-b0a9-a0f8c9b41f49%40googlegroups.com.
private void RequestRewardedVideo()
{
#if UNITY_ANDROID
string adUnitId = Android_RewardedAdID;
#elif UNITY_IPHONE
string adUnitId = iOS_RewardedAdID;
#else
string adUnitId = "unexpected_platform";
#endif
//Create a new empty VRVME Object, required to add additional parameters, rewarded only
VungleRewardedVideoMediationExtras extras = new VungleRewardedVideoMediationExtras();
//Same as above, all placements must be passed at all times, as Admob doesn't initlize Vungle until admob calls it
extras.SetAllPlacements(new string[] { VungleRewardPlacement, VungleDefaultPlacement });
// Create an empty ad request with extra parameters required to load Vungle
AdRequest request = new AdRequest.Builder().AddMediationExtras(extras).Build();
//Loads an ad with the above parameters
rewardBasedVideo.LoadAd(request, adUnitId);
}
Should i remove the Vungle extras part from the Ad request or it wont effect it ?
--
---
You received this message because you are subscribed to the Google Groups "Google Mobile Ads SDK Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-admob-ads-sdk+unsub...@googlegroups.com.
To post to this group, send email to google-admob-ads-sdk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-admob-ads-sdk/58ba0cd4-e6f0-4272-81af-d98431738088%40googlegroups.com.
--
---
You received this message because you are subscribed to the Google Groups "Google Mobile Ads SDK Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-admob-ads-sdk+unsub...@googlegroups.com.
To post to this group, send email to google-admob-ads-sdk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-admob-ads-sdk/5e85e072-d019-45e1-b871-2d79c9ff2bbf%40googlegroups.com.
UPDATE : we were just talking with Nend and they said that the Ad Request must be coming from a Japanese IP, and, the phone language must also be Japanese...Is google aware of that ?
UPDATE : we were just talking with Nend and they said that the Ad Request must be coming from a Japanese IP, and, the phone language must also be Japanese...Is google aware of that ?
--
---
You received this message because you are subscribed to the Google Groups "Google Mobile Ads SDK Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-admob-ads-sdk+unsub...@googlegroups.com.
To post to this group, send email to google-admob-ads-sdk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-admob-ads-sdk/a34946d1-1109-4a75-b519-6d8a99c20a51%40googlegroups.com.