Amazon mobile ads Proguard

195 Views Asked by At

I'm using Amazon mobile ads (Just com.amazon.device.ads.InterstitialAd ad format).

What should I include in the Proguard file?

There is documentation on Proguard for in-app-purchases, but not for mobile ads.

1

There are 1 best solutions below

0
Intelli Dev On

Amazon stated in 2013 that they were fixing the proguard issue. So it should have been fixed. if you are still having errors try putting this in your proguard

-keep class com.amazon.device.ads.** { *; } 
-keep class **.R { } 
-keep class **.R$* { } 
-keepattributes *Annotation* 
-dontwarn org.apache.commons.** 
-dontwarn com.amazon.** -keep class org.apache.** {*;} 
-keep class com.amazon.** {*;}