Skip to content

Instantly share code, notes, and snippets.

@radi-cho
Created February 5, 2019 09:30
Show Gist options
  • Save radi-cho/21f2b10372dfed98180925fcf08dfc22 to your computer and use it in GitHub Desktop.
Save radi-cho/21f2b10372dfed98180925fcf08dfc22 to your computer and use it in GitHub Desktop.
Proguard config for solving the common Admob Unity error ClassNotFoundException ads.UnityAdListener
-keep class com.google.unity.** {
*;
}
-keep public class com.google.android.gms.ads.**{
public *;
}
-keep public class com.google.ads.**{
public *;
}
-keepattributes *Annotation*
-dontobfuscate
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment