gpt4 book ai didi

android - gradle 无法解析意式 Espresso 的 Intent 、转轮、规则和核心

转载 作者:行者123 更新时间:2023-11-29 16:54:44 25 4
gpt4 key购买 nike

androidTestCompile 'com.android.support.test:runner:1.0.0'
androidTestCompile 'com.android.support.test:rules:1.0.0'
androidTestCompile('com.android.support.test.espresso:espresso-core:3.0.0', {
exclude group: 'com.android.support', module: 'support-annotations'
exclude module: 'jsr305'
})
androidTestCompile('com.android.support.test.espresso:espresso-intents:3.0.0',{
exclude module: 'jsr305'
})

我已将以上内容添加到我应用的 build.gradle 中。但是android studio报错说无法解析上面的依赖。有什么问题?

最佳答案

这些现在将位于 Google 的存储库下,因此为了添加它们,您需要将 build.gradle 上的 repositories 更改为以下内容:

repositories {
jcenter()
// Add this if you use Gradle 4.0+
google()
// Add this if you use Gradle < 4.0
maven { url 'https://maven.google.com' }
}

添加 Google 后,您应该能够下载和使用这些依赖项。

希望对你有帮助

关于android - gradle 无法解析意式 Espresso 的 Intent 、转轮、规则和核心,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45347552/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com