我将尝试详细解释正在发生的事情。
*版本版本:5.1.1。
Android Gradle插件版本:3.4.0
这是我的Project build.gradle:
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
mavenCentral()
maven { url 'https://jitpack.io' }
maven { url "https://maven.google.com" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
这是我的App build.gradle:
apply plugin: 'com.android.application'
android {
compileSdkVersion 29
defaultConfig {
applicationId "com.example.androidxexamp"
minSdkVersion 19
targetSdkVersion 29
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
implementation 'com.google.android.material:material:1.2.0-alpha04'
}
发生了什么事?
库“ com.google.android.material:material:1.2.0-alpha04”尝试下载androidx.cardview:cardview:1.0.0依赖项。但这不会下载:
标签:“找不到cardview.aar(androidx.cardview:cardview:1.0.0)。 在以下位置搜索: https://dl.google.com/dl/android/maven2/androidx/cardview/cardview/1.0.0/cardview-1.0.0.aar”
重点是:当我手动尝试从https://dl.google.com/dl/android/maven2/androidx/cardview/cardview/1.0.0/cardview-1.0.0.aar下载时,它会完美下载。但是IDE无法。
因此,我尝试手动插入androidx.cardview:cardview:1.0.0库。我下载了cardview-1.0.0.aar文件并成功插入到A.Studio。
但是我需要材质库才能使用TabLayout。因此,当我包含(实现'com.google.android.material:material:1.2.0-alpha04')时,此操作再次失败,表示无法在https://dl.google.com/dl/android/maven2/androidx/cardview/cardview/1.0.0/cardview-1.0.0.aar处解析。
我正在尝试查看是否有机会避免材料库停止调用cardview依赖项,不知道是否可能。
此外,如果我插入(实现'androidx.cardview:cardview:1.0.0'),则Studio表示无法解析此链接。
请问有什么建议吗?非常感谢
答案 0 :(得分:1)
好,我现在开始工作了。我将Gradle版本从5.1.1升级到6.1.1,之后,它可以解决依赖性。谢谢。