Featured image of post Android小知识 - “android.support.v4.content” that cannot be safely rewritten. for androidx

Android小知识 - “android.support.v4.content” that cannot be safely rewritten. for androidx

遇到的问题:

“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

主要是添加一个依赖

添加依赖

1
2
3
4
5

dependencies {
    implementation 'com.jakewharton:butterknife:10.0.0'
    annotationProcessor 'com.jakewharton:butterknife-compiler:10.0.0'
}
Licensed under CC BY-NC-SA 4.0
最后更新于 Jul 30, 2025 11:44 +0800