I'm not receiving any ads while using Zest (Komli) AdNw with Adwhirl and the code fires this excpetion.. Can anyone tell me why??

Like any adNw ..i just put the SDK in the application..declaring Needed Permsissons..then requesting the ads.. It works fine with Admob..

    LinearLayout adLayout = (LinearLayout) findViewById(R.id.ads);
        AdWhirlLayout adWhirlLayout = new AdWhirlLayout(this, "Key");
        RelativeLayout.LayoutParams adWhirlLayoutParams = new RelativeLayout.LayoutParams(LayoutParams.FILL_PARENT,
        LayoutParams.WRAP_CONTENT);
        adLayout.addView(adWhirlLayout, adWhirlLayoutParams);
//        AdWhirlTargeting.setTestMode(true);
        adLayout.invalidate();
link|improve this question

46% accept rate
feedback

1 Answer

This issue is happening in the source here, somewhere in the method that is just trying to fetch the config and convert the response json into a String. It looks like an issue with configuring your ids in AdWhirl. Try hitting

http://mob.adwhirl.com/getInfo.php?appver=311&appid=YOUR_APP_KEY

and replacing YOUR_APP_KEY with your actual app key. See if you find something out of the ordinary in the response.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.