繁体   English   中英

创建 androidx 项目后,Android gradle 无法立即解析核心

[英]Android gradle failed to resolve core right after creating a androidx project

我正在 android studio 3.3 中使用 androidx 创建一个新的 android 项目,并且在创建项目后立即出现以下错误

ERROR: Failed to resolve: core
Affected Modules: app


ERROR: Failed to resolve: collection
Affected Modules: app


ERROR: Failed to resolve: annotation
Affected Modules: app


ERROR: Failed to resolve: lifecycle-common
Affected Modules: app


ERROR: Failed to resolve: core-common
Affected Modules: app

我已经下载了最新的谷歌支持存储库,gradle 4.10.1,gradle android tools 3.3.0,我还检查了我对 maven.google.com 和 jcenter.bintary.com 的访问,这很好。

我还清理了项目并重新启动了 android studio,但没有一个工作

我的依赖:

implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.0.0-beta01'
implementation 'androidx.constraintlayout:constraintlayout:1.1.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.1.0-alpha4'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0-alpha4'

和所有项目存储库:

google()
jcenter()
maven { url "https://jitpack.io" }
mavenCentral()

不幸的是,错误不清楚,我不知道这是怎么回事,谢谢你的帮助

错误是由于 android studio 的默认 androidx 依赖项版本,我将我的依赖项更改为:

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'androidx.appcompat:appcompat:1.0.0'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.2'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test:runner:1.1.0-alpha4'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0-alpha4'
}

它现在工作正常。 我从这里得到这些版本

我建议你改变这些

你用吧

implementation 'androidx.appcompat:appcompat:1.0.0'

改成

  implementation 'androidx.appcompat:appcompat:1.+'

androidTestImplementation 'androidx.test:runner:1.1.0-alpha4'

改成

    androidTestImplementation 'androidx.test:runner:1.+'

我在我的 gradle 中更新了这 3 行

testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM