3

When i integrated the RevMob into my application, it shows me the following error :

No ads for this device/country right now

Is there a way to solve that issue ?

Axel Isouard
  • 1,498
  • 1
  • 24
  • 38

4 Answers4

0

Do you give permition in manifest<uses-permission android:name="android.permission.INTERNET"/> <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> <uses-permission android:name="android.permission.READ_PHONE_STATE"/>

  • 1
    still its not displaying any banner ads can u please help me out logcat error is "Revmob did not answer as expected". – Agent Chocks. May 08 '14 at 07:31
0

It means what it says. Revmob doesn't have any publisher for your country. Revmob has invested much in gaining developers rather than advertisers, thus they have lack of ads sometimes.

Just to check if you have done everything fine, try using VPN on your device for UK or US. They normally have ads for those countries.

0xC0DED00D
  • 19,522
  • 20
  • 117
  • 184
0

To check the implementation you can use the test mode:

EnvironmentConfig.setTestingMode(true);

This is described on the sdk documentation http://sdk.revmob.com/android

Diogo T
  • 2,591
  • 1
  • 29
  • 39
0

It can be a temporary outage of campaigns for your device/country etc. It must be solved in the server/sales side automatically. But you can check your implementation using the testing mode, like Diogo said.

In the newest versions, you must use the following code:

RevMob revmob = RevMob.start(this, APPLICATION_ID);
revmob.setTestingMode(RevMobTestingMode.WITH_ADS);
Paulo Cheque
  • 2,797
  • 21
  • 22