gpt4 book ai didi

android - 无法解决依赖android studio

转载 作者:行者123 更新时间:2023-12-03 05:32:50 25 4
gpt4 key购买 nike

我只是想知道如何 gradle 插件成功构建

错误 : 无法解决依赖关系 对于':app@debugAndroidTest/compileClasspath':无法解析androidx.core:core:1.1.0。
显示详细资料
受影响的模块:app

**

build.gradle :project



**
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
repositories {
google()
jcenter()

}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.1'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}

allprojects {
repositories {
google()
jcenter()

}
}

task clean(type: Delete) {
delete rootProject.buildDir
}

build.gradle :module:app


apply plugin: 'com.android.application'

android {
compileSdkVersion 28
defaultConfig {
applicationId "android.example.com"
minSdkVersion 17
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}


dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:support-v4:28.0.0'
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'

implementation "com.android.support:support-v4:28.0.0"
implementation "com.android.support:appcompat-v7:28.0.0"
implementation "com.android.support:support-vector-drawable:28.0.0"
implementation "com.android.support:recyclerview-v7:28.0.0"
implementation "com.android.support:design:28.0.0"
implementation "com.android.support.constraint:constraint-layout:1.1.3"
implementation 'com.android.support:support-annotations:28.0.0'

implementation 'com.jakewharton:butterknife:10.0.0'
annotationProcessor 'com.jakewharton:butterknife-compiler:10.0.0'


}

我只是想知道如何 gradle 插件成功构建

最佳答案

使用 Android Studio 3.2 及更高版本,您可以通过选择 将现有项目迁移到 AndroidX重构 > 迁移到 AndroidX 从菜单栏中。

重构命令使用两个标志。默认情况下,它们都在您的 gradle.properties 中设置为 true。文件:

android.useAndroidX=true

Android 插件使用适当的 AndroidX 库而不是支持库。
android.enableJetifier=true

Android 插件通过重写其二进制文件自动迁移现有的第三方库以使用 AndroidX。

详情在这里: https://developer.android.com/jetpack/androidx/migrate

关于android - 无法解决依赖android studio,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58351414/

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