我对我的应用中使用的Android支持库的不一致版本存在问题,但在我的Gradle中指定完全相同的版本后,我仍然会遇到相同的错误。
问题主要出在'com.android.support:appcompat-v7:23.1.0'
和'com.android.support:support-v4:24.0.0'
之间。即使在指定compile 'com.android.support:support-v4:23.1.0'
之后,它仍然表示与support-v4:24.0.0
存在冲突。任何有助于解决此问题的帮助将不胜感激。
编辑:下面是我的整个build.gradle文件。
buildscript {
repositories {
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
classpath 'io.fabric.tools:gradle:1.+'
}
}
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'
repositories {
maven { url 'https://maven.fabric.io/public' }
}
def keystorePropertiesFile = rootProject.file("keystore.properties");
def keystoreProperties = new Properties()
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
android {
signingConfigs {
config {
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
storeFile file(keystoreProperties['storeFile'])
storePassword keystoreProperties['storePassword']
}
}
compileSdkVersion 23
buildToolsVersion '25.0.2'
defaultConfig {
applicationId "com.company"
minSdkVersion 16
targetSdkVersion 23
versionCode 48
versionName "5.1.5"
multiDexEnabled true
}
buildTypes {
release {
debuggable false
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.config
}
}
packagingOptions {
exclude 'META-INF/LICENSE'
exclude 'META-INF/DEPENDENCIES'
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.0'
compile 'com.android.support:support-v4:23.1.0'
compile 'com.android.support:design:23.1.0'
compile 'com.android.support:support-annotations:23.1.0'
compile 'com.parse.bolts:bolts-android:1.4.0'
compile files('libs/Parse-1.13.0/Parse-1.13.0.jar')
compile 'com.pkmmte.view:circularimageview:1.1'
compile 'com.google.code.gson:gson:2.7'
// SugarORM
compile 'com.github.satyan:sugar:1.5'
compile 'com.android.support:multidex:1.0.1'
// Firebase
compile 'com.google.firebase:firebase-core:10.2.0'
compile 'com.google.firebase:firebase-messaging:10.2.0'
// Google play services
compile 'com.google.android.gms:play-services-location:10.2.0'
compile 'com.google.android.gms:play-services-places:10.2.0'
// Timber logging
compile 'com.jakewharton.timber:timber:4.5.0'
compile 'joda-time:joda-time:2.9.7'
// Crashlytics
compile('com.crashlytics.sdk.android:crashlytics:2.6.7@aar') {
transitive = true;
}
}
apply plugin: 'com.google.gms.google-services'
答案 0 :(得分:0)
查看您的android
DSL:
android {
compileSdkVersion 25
buildToolsVersion '25.0.2'
}
如果buildToolsVersion
为25岁以上,compileSdkVersion
也是如此。
由于buildToolsVersion
为25+,因此您的支持库也应如此:
dependencies {
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support:support-v4:25.3.1'
compile 'com.android.support:design:25.3.1'
compile 'com.android.support:support-annotations:25.3.1'
}
答案 1 :(得分:0)
您需要使用 Linux 中的以下命令检查依赖关系树中的依赖关系:
./gradlew app:dependencies
或者如果您使用的是 Windows ,请尝试以下操作:
gradlew.bat app:dependencies
然后,在找到support-v4:24.0.0
的依赖关系后,您可以将其排除在:
compile('com.library.name:version') {
//exclude group: 'com.android.support'
//exclude module: 'support-v7'
//exclude module: 'appcompat-v7'
exclude module: 'support-v4'
}
答案 2 :(得分:0)
在这些情况下,当库版本不同于其他版本时,建议您将该库添加到您的依赖项中,使其版本与其他版本相同。
根据您的情况,您可以添加所有版本为25.3.1
的库。