Gradle 依赖版本

Gradle dependencies version

嗨,我应该担心这个吗 gradle warning/error?

apply plugin: 'com.android.application'

android {
    compileSdkVersion 25
    buildToolsVersion "25.0.2"
    defaultConfig {
        applicationId "com.example.bananasandpajamas.pilloclock"
        minSdkVersion 16
        targetSdkVersion 25
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    compile 'com.android.support:appcompat-v7:25.3.1' <---- THIS ONE
    compile 'com.android.support.constraint:constraint-layout:1.0.2'
    testCompile 'junit:junit:4.12'
    //compile 'com.google.firebase:firebase-core:10.2.1'
    //compile 'com.google.firebase:firebase-auth:10.2.1'
    //compile 'com.google.android.gms:play-services-auth:10.2.1'
    compile 'com.firebaseui:firebase-ui-auth:1.2.0'

}
apply plugin: 'com.google.gms.google-services'

它警告我 android.support:appcompat 有两个版本。 但是当我试图将它降级到 25.1.1 时。它警告我应该使用最新的。

编辑:

Error message : All com.android.support libraries must use the exact same version specification (mixing versions can lead to runtime crashes). Found versions 25.3.1, 25.1.1. Examples include com.android.support:animated-vector-drawable:25.3.1 and com.android.support:cardview-v7:25.1.1

您的构建版本是 buildToolsVersion "25.0.2"

并且您的依赖版本是

compile 'com.android.support:appcompat-v7:25.3.1'  

如何编译?

在 appcompat 版本中更改您的版本或更新您的 android studio..