I'm struggling with java.lang.NoClassDefFoundError when invoking com.mixpanel.android.mpmetrics.MixpanelAPI
It is because I run proguard (I have to). However I added proguard exclusion:
-keep public class com.mixpanel.android.mpmetrics.**
or
-keep public class com.mixpanel.android.mpmetrics.MixpanelAPI { *; }
but it doesn't help.
Notice worth mentioning is that I get MixpanelAPI lib in that way:
compile "com.mixpanel.android:mixpanel-android:4.0.0@aar"
So it's aar, not standard jar.
How to run it with proguard but not loosing Mixpanel code ?
As of version 4.5, Mixpanel advises using the following proguard settings
You can find these instructions in the README of the Mixpanel library, at https://github.com/mixpanel/mixpanel-android/blob/master/README.md in the changelog for version 4.5
In my case the problem was in incorrect MultiDex implementation, I solve it after add to main class MultiDex.install(this);
This could be the solution: