gpt4 book ai didi

android - 在 Gradle 中加载 Material - 下载失败 'android-P'

转载 作者:行者123 更新时间:2023-11-29 23:25:20 24 4
gpt4 key购买 nike

我是 Android Studio 的新手。

我想将 Material 依赖项添加到我的项目中,但是当 sync 我的 gradle 文件时,我收到一条错误消息。

这个线程 ( link ) 告诉我使用 compileSdkVersion 'android-P' 但这导致 android studio 告诉我下载 android-P 但它失败了要做,当我点击下载时(...android-P 无法下载...)。

所以我又按照 Material 主页上的描述回去尝试了get started .

您可以在下面找到我的相应代码和错误消息:

apply plugin: 'com.android.application'

android {
compileSdkVersion 28
defaultConfig {
applicationId "com.example.chris.doghelper"
minSdkVersion 22
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
allprojects {
repositories {
google()
jcenter()
mavenCentral()
}
}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:support-v4:28.0.0'
implementation 'com.android.support:design:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.google.android.material:material:1.0.0'
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'
}

和错误信息:

Manifest merger failed : Attribute application@appComponentFactory value=(android.support.v4.app.CoreComponentFactory) from [com.android.support:support-compat:28.0.0] AndroidManifest.xml:22:18-91
is also present at [androidx.core:core:1.0.0] AndroidManifest.xml:22:18-86 value=(androidx.core.app.CoreComponentFactory).
Suggestion: add 'tools:replace="android:appComponentFactory"' to <application> element at AndroidManifest.xml:5:5-24:19 to override.

你有办法解决我的问题吗?

最佳答案

这是因为您将新 Material 库与旧版支持库一起使用。您必须将 android.support 迁移到 androidx 才能使用 com.google.android.material

如果您还不想切换到新的 androidxcom.google.android.material 包,您可以通过 com.android.support:design:28.0.0 依赖。

关注Link1Link2 .

要切换 androidX,请遵循此 Link3 .

我走得更深,我为你找到了它。

一定会对你有帮助。

编码愉快!

关于android - 在 Gradle 中加载 Material - 下载失败 'android-P',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53691981/

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