java.lang.NoClassDefFoundError: Failed resolution of

前端 未结 2 1162
南方客
南方客 2021-01-28 02:44

I installed jrebel for android on android studio, and this error occurred at startup

Here\'s my configuration:

my jdk version :jdk1.8.0_91

相关标签:
2条回答
  • 2021-01-28 03:09

    java.lang.NoClassDefFoundError is very different with java.lang.ClassNotFoundException. you can try these methods:

    1. make your Application extends MultiDexApplication(compile 'com.android.support:multidex:1.0.1')
    2. disable instant run
    3. try without jrebel

    It may be cause crash by multi-dex files.

    0 讨论(0)
  • 2021-01-28 03:12

    Please have a look at the following Thread. This will solve your problem

    Android: ClassNotFoundException while class is present

    You are running into the Multidex problem with device version <21

    0 讨论(0)
提交回复
热议问题