Thank you for your reply. (double post with unit ID hidden to archive)
I think sdk is integrated, because I can show AdColony ad with direct call.
I use Eclipse, so, for the adapter, I copied the classes.jar in libs folder (extracted from the adapter .aar)
Also, I have difficulties to test your sample (because Eclipse)
I try also another Unit ID (only interstitial) and the behaviour is the same
- Rewarded Unit ID is ca-app-pub-xxxxxx
- I don't see warnings, AdColony configuration is launched correctly
- sample code
private RewardedVideoAd _mAd = null;
onCreate() {
AdColony.configure(this, APP_ID, ZONE_ID);
_mAd = MobileAds.getRewardedVideoAdInstance(this);
_mAd.setRewardedVideoAdListener(this);
AdColonyBundleBuilder.setZoneId(ZONE_ID);
AdRequest adRequest = new AdRequest.Builder()
.addTestDevice(ID_NEXUS7)
.addNetworkExtrasBundle(AdColonyAdapter.class,AdColonyBundleBuilder.build())
.build();
_mAd.loadAd(ConfigUtils.AD_UNIT_ID_REWARD_VIDEO, adRequest);
}
public void showAdRewardVideo() {
if (_mAd != null)
_mAd.show();
}