Aller au contenu principal
Version: 5.x.x

F.A.Q

This document answers the following frequently asked questions:

If your app uses Proguard, you must edit your Proguard settings to avoid stripping Google Play out of your app

If your app uses Proguard, you must edit your Proguard settings to avoid stripping Google Play out of your app. Edit your project’s proguard-project.txt file to add the following: [https://bitbucket.org/mngcorp/mngads-demo-android/src/HEAD/MngAdsDemo/app/proguard-rules.pro?at=master&fileviewer=file-view-default] (https://bitbucket.org/mngcorp/mngads-demo-android/src/HEAD/MngAdsDemo/app/proguard-rules.pro?at=master&fileviewer=file-view-default)

Interstitial did load callback without display

You must use an instance per activity.

Some AdNetworks show their interstitials on top of an Activity layout and then disappear. Therefore, you must instantiate once InterstitialAd by activity (used for display the interstitial). If you want to build an interstitials manager for your app to handle all interstitials requests, you should make sure to instantiate InterstitialAd with the activity that will make the request.

android:noHistory

http://developer.android.com/guide/topics/manifest/activity-element.html#nohist

android:noHistory Whether or not the activity should be removed from the activity stack and finished (its finish() method called) when the user navigates away from it and it's no longer visible on screen .

Therefore, do not use

android:noHistory = "true"