Random clicks on admob ads

I accidentally clicked on advertisements on my only android game while testing. He totaled up to $ 0.54, if that's a problem later? If so, what can I do to resolve this?

+3


source to share


1 answer


Never. Continuous clicks on the ads of the same user many times lead to a violation, and the Admob account is suspended. So it never happens in your case (unless you clicked ads many times). To do this, you can use dummy data by testing in an emulator.

  AdRequest adRequest = new AdRequest.Builder()

    // Add a test device to show Test Ads..comment for real app when launching
     .addTestDevice(AdRequest.DEVICE_ID_EMULATOR)
     .addTestDevice("CC5F2C72DF2B356BBF0DA198")
            .build();

      



Hope it helps.

+3


source







All Articles