NoClassDefFoundError for code in an Java library on Android

前端 未结 24 2020
梦如初夏
梦如初夏 2020-11-22 15:19

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

24条回答
  •  忘掉有多难
    2020-11-22 16:01

    On Android Studio:

    1) Add multiDexEnabled = true in your default Config

    2) Add compile com.android.support:multidex:1.0.0 in your dependencies

    3) Application class extend MultiDexApplication instead of just Application

提交回复
热议问题