Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…
| # MoPub Proguard Config | |
| # NOTE: You should also include the Android Proguard config found with the build tools: | |
| # $ANDROID_HOME/tools/proguard/proguard-android.txt | |
| # Keep public classes and methods. | |
| -keepclassmembers class com.mopub.** { public *; } | |
| -keep public class com.mopub.** | |
| -keep public class android.webkit.JavascriptInterface {} | |
| # Explicitly keep any custom event classes in any package. | |
| -keep class * extends com.mopub.mobileads.CustomEventBanner {} | |
| -keep class * extends com.mopub.mobileads.CustomEventInterstitial {} | |
| -keep class * extends com.mopub.nativeads.CustomEventNative {} | |
| # Support for Android Advertiser ID. | |
| -keep class com.google.android.gms.common.GooglePlayServicesUtil {*;} | |
| -keep class com.google.android.gms.ads.identifier.AdvertisingIdClient {*;} | |
| -keep class com.google.android.gms.ads.identifier.AdvertisingIdClient$Info {*;} | |
| # Support for Google Play Services | |
| # http://developer.android.com/google/play-services/setup.html | |
| -keep class * extends java.util.ListResourceBundle { | |
| protected Object[][] getContents(); | |
| } | |
| -keep public class com.google.android.gms.common.internal.safeparcel.SafeParcelable { | |
| public static final *** NULL; | |
| } | |
| -keepnames @com.google.android.gms.common.annotation.KeepName class * | |
| -keepclassmembernames class * { | |
| @com.google.android.gms.common.annotation.KeepName *; | |
| } | |
| -keepnames class * implements android.os.Parcelable { | |
| public static final ** CREATOR; | |
| } |