I\'m currently developping an Android app using Android Studio. Currently, the app is launching perfectly on Lollipop devices, but crashes at launch due to a ClassNotF
ClassNotF
I forgot to add this line right after the super call in the onCreate() method of my custom application class :
MultiDex.install(getBaseContext());
Thanks Kane for the solution !