Android studio 不能查看 support包源码

there are some combinations if libraries,that are incompatible,or can lead to bugs, One such incompatibility is compiling with a version of the android support libraries that is not the latest version (or in particular,a version lower than your tagetsdkversion) 
issue id: gradlecompatible

剔除类似的support,使用自己的

附上support版本列表:地址https://developer.android.google.cn/topic/libraries/support-library/revisions

implementation('com.jakewharton:butterknife:9.0.0-rc1') {
        exclude group: 'com.android.support'
    }

猜你喜欢

转载自blog.csdn.net/buyaoshitududongwo/article/details/83786156