- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 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
。
如果您还不想切换到新的 androidx
和 com.google.android.material
包,您可以通过 com.android.support:design:28.0.0
依赖。
要切换 androidX,请遵循此 Link3 .
我走得更深,我为你找到了它。
一定会对你有帮助。
编码愉快!
关于android - 在 Gradle 中加载 Material - 下载失败 'android-P',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53691981/
我正在开发一个需要能够平均三个数字的 Facebook 应用程序。但是,它总是返回 0 作为答案。这是我的代码: $y = 100; $n = 250; $m = 300; $number = ($y
我只是无法弄清楚这一点,也找不到任何对我来说有意义的类似问题。我的问题:我从数据库中提取记录,并在我的网页上以每个面板 12 条的倍数显示它们。因此,我需要知道有多少个面板可以使用 JavaScrip
我是一名优秀的程序员,十分优秀!