ClassNotFoundException “android.support.v4.graphics.drawable.DrawableWrapper”

前端 未结 8 1511
温柔的废话
温柔的废话 2020-12-20 19:10

What can cause this error for class DrawableWrapper from the support lib?

Caused by: java.lang.ClassNotFoundException: Didn\'t find class 
\"and         


        
8条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-20 19:48

    I started getting this exception in Android 5 and Android 4 users after removing com.android.support-v13 from my build.gradle file:

    configurations.all {
        exclude group: 'com.android.support', module: 'support-v13'
    }
    

    I removed the above exclude configuration and no longer saw this crash.

提交回复
热议问题