2017-04-13 28 views
1

我遇到問題當我試圖同步我的gradle文件時,所有com.android.support庫必須使用完全相同的版本規範。請問任何人都可以告訴我如何解決我的問題。我已經通過這個解決方案All com.android.support libraries must use the exact same version specification。但不幸的是,它不適用於我的情況。下面是我的gradle。所有com.android.support庫必須使用完全相同的版本規範gradle問題

apply plugin: 'com.android.application' 


android { 
compileSdkVersion 23 
buildToolsVersion "25.0.0" 
defaultConfig { 
    applicationId "com.application" 
    minSdkVersion 15 
    targetSdkVersion 23 
    versionCode 1 
    versionName "1.0" 
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" 

} 
useLibrary 'org.apache.http.legacy' 

buildTypes { 
    release { 
     minifyEnabled false 
     proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 
    } 
} 
} 

dependencies { 

compile fileTree(dir: 'libs', include: ['*.jar']) 
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { 
    exclude group: 'com.android.support', module: 'support-annotations' 
}) 
compile 'com.android.support:recyclerview-v7:23.2.0' 
compile 'org.altbeacon:android-beacon-library:2.+' 
compile 'com.google.firebase:firebase-messaging:10.2.1' 
compile 'com.google.android.gms:play-services-gcm:10.2.1' 
compile 'com.google.code.gson:gson:2.7' 
compile 'com.android.support:appcompat-v7:23.2.0' 
compile 'com.android.support:design:23.2.0' 


testCompile 'junit:junit:4.12' 
} 



apply plugin: 'com.google.gms.google-services' 
+0

有沒有人可以幫助我呢?我仍然在尋找解決方案:( – AndroidDev

回答

1

由於您使用

compile 'com.google.android.gms:play-services-gcm:10.2.1' 

你必須與支持庫V24的依賴。

一般而言,您可以使用此命令檢查您的依存關係樹。

./gradlew app:dependencies 
相關問題