嗨,我应该担心这个gradle警告/错误吗?
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 时。它给了我警告我应该使用最新的。
编辑:
错误消息:所有 com.android.support 库必须使用确切的 相同的版本规范(混合版本可能会导致运行时 崩溃(。找到版本 25.3.1、25.1.1。示例包括 com.android.support:animated-vector-drawable:25.3.1 和 com.android.support:cardview-v7:25.1.1
您的构建版本buildToolsVersion "25.0.2"
您的依赖项版本是
compile 'com.android.support:appcompat-v7:25.3.1'
它将如何编译?
在appcompat版本中更改您的版本或更新您的安卓工作室。