I am experiencing an error quite often among my users. The app crashes during startup. When the MainActivity is supposed to be loaded the VM apparently cannot find the class
On Android Studio:
1) Add multiDexEnabled = true in your default Config
multiDexEnabled = true
2) Add compile com.android.support:multidex:1.0.0 in your dependencies
3) Application class extend MultiDexApplication instead of just Application
Application class
MultiDexApplication
Application