-将我的android项目迁移到Androidx之后,出现此错误:
ERROR: Failed to resolve: core
Affected Modules: app
-重建后,我得到了:
Could not find core.jar (androidx.core:core:1.0.0).
Searched in the following locations:
https://dl.google.com/dl/android/maven2/androidx/core/core/1.0.0/core-1.0.0.jar
-但是从我的gradle中排除了黄油刀之后,一切都会好起来,而且我也没有任何错误。
-我以前尝试过此方法,但是没有用:
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
-我在gradle.properties中使用了以下代码
android.enableJetifier=true
android.useAndroidX=true
-butterknife依赖项代码:
implementation 'com.jakewharton:butterknife:10.1.0'
annotationProcessor 'com.jakewharton:butterknife-compiler:10.1.0'