java.lang.NoClassDefFoundError: Failed resolution of

前端 未结 2 1161
南方客
南方客 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.

提交回复
热议问题