我已經更新了android studio到2.3。 我已經搜索並應用了此論壇上給出的所有解決方案,但我的問題仍未解決。 編譯「com.android.support:appcompat-v7:25.3.0」 這個庫的依賴關係顯示錯誤所有com.android.support庫必須使用完全相同的版本規範(混合版本可能導致運行時崩潰)
//Here is my build.gradle file
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "com.compass.islamicdirection"
minSdkVersion 14
targetSdkVersion 25
versionCode 1
versionName "1.0"
multiDexEnabled true
}
dexOptions {
javaMaxHeapSize "4g"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:25.3.0'
compile 'com.google.android.gms:play-services:10.2.0'
compile 'com.android.support:multidex:1.0.1'
compile files('libs/StartAppInApp-3.5.2.jar')
}
https://stackoverflow.com/a/42374426/115145 – CommonsWare
@CommonsWare不工作 –