Moh*_*sen 2 java android gradle android-studio androidx
我正在 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()
maven { url "https://jitpack.io" }
mavenCentral()
Run Code Online (Sandbox Code Playgroud)
不幸的是,错误不清楚,我不知道这是怎么回事,谢谢你的帮助
错误是由于 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'
}
Run Code Online (Sandbox Code Playgroud)
它现在工作正常。我从这里得到这些版本
归档时间: |
|
查看次数: |
3038 次 |
最近记录: |