我正在 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
Run Code Online (Sandbox Code Playgroud)
我已经下载了最新的谷歌支持存储库,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'
Run Code Online (Sandbox Code Playgroud)
和所有项目存储库:
google()
jcenter() …Run Code Online (Sandbox Code Playgroud)