我在build.gradel文件中具有以下依赖项。 我没有使用任何v4库, 在构建gradle时,仍然出现“无法解决:support-v4”错误。
我已经通过这两个链接
但是找不到解决方案。
我在这里附上了项目结构图。
android {
compileSdkVersion 26
dataBinding.enabled = true
defaultConfig {
applicationId "XXX.XXXXXXX.XXXXXXXXXX"
minSdkVersion 21
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
multiDexEnabled true
}
dataBinding {
enabled = true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
repositories {
maven { url "https://maven.google.com" }
}
implementation fileTree(dir: 'libs', include: ['*.jar'])
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
//noinspection GradleCompatible
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation "com.android.support:customtabs:26.1.0"
implementation 'com.android.support.constraint:constraint-
layout:1.0.2'
implementation 'com.android.support:design:26.+'
implementation 'com.android.support:cardview-v7:26.+'
implementation 'com.google.android.gms:play-services:10.2.1'
implementation 'com.android.support:multidex:1.0.0'
implementation 'com.google.firebase:firebase-messaging:10.2.1'
testImplementation 'junit:junit:4.12'
}
apply plugin: 'com.google.gms.google-services'
请帮助我解决此问题。 提前致谢。
答案 0 :(得分:4)
我遇到了同样的问题,我在biuld.gradle(应用程序)中更改了repositories
的顺序并解决了问题。
更改:
jcenter()
google()
收件人:
google()
jcenter()
希望有帮助
答案 1 :(得分:0)
将存储库移至模块build.gradle
中,而不移至应用程序build.gradle
中。它将解决您的问题。