“Ad server responded but sent no ad units” in Flurry in android

后端 未结 2 1351
自闭症患者
自闭症患者 2020-12-22 12:52

I want to integrate Flurry Ad from here. But I\'m facing issue in log..

01-06 11:05:28.746: E/FlurryAgent(440): Ad server responded but sent no ad units.


        
相关标签:
2条回答
  • 2020-12-22 13:04

    My solution for this issue: Find interface function shouldDisplayAd() and change return to true :

    @Override
    public boolean shouldDisplayAd(String arg0, FlurryAdType arg1) {
        return true;
    }
    
    0 讨论(0)
  • 2020-12-22 13:05

    Try calling enableTestAds() after the call to onStartSession().

    (Full disclosure: I work in the Support team at Flurry)

    0 讨论(0)
提交回复
热议问题