遇到的问题:
“android.support.v4.content” that cannot be safely rewritten. for androidx
解决办法:
参考:https://stackoverflow.com/questions/53484988/the-given-artifact-contains-a-string-literal-with-a-package-reference-android-s
主要是添加一个依赖
添加依赖
dependencies {
implementation 'com.jakewharton:butterknife:10.0.0'
annotationProcessor 'com.jakewharton:butterknife-compiler:10.0.0'
}