我正在使用android studio构建一个原生的Android应用程序。到目前为止,我已经使用firebase和地图页面的内容,但我一直在收到错误。我看过像我这样的帖子,但是那段时间以前有不同版本的帖子。我想知道是否有人知道解决方案。
错误:
错误:任务':app:processDebugGoogleServices'执行失败。 '>'请修改版本冲突,方法是更新google-services插件的版本(https://bintray.com/android/android-tools/com.google.gms.google-services/提供有关最新版本的信息)或将com.google.android.gms版本更新为10.0.1。
App level build.gradle:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion '25.0.2'
defaultConfig {
applicationId "com.me.myproject"
minSdkVersion 21
targetSdkVersion 23
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(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.1', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support:design:25.3.1'
compile 'com.google.firebase:firebase-auth:10.0.1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.google.android.gms:play-services-maps:10.2.1'
testCompile 'junit:junit:4.12'
}
apply plugin: 'com.google.gms.google-services'
项目级build.gradle:
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
classpath 'com.google.gms:google-services:3.0.0'
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
编辑:在更改firebase并将服务更改为相同版本后,我收到此错误(请参阅下文),我将被发送到文件v24 \ values-v24.xml
错误:(3)检索项目的父项时出错:找不到与给定名称匹配的资源' android:TextAppearance.Material.Widget.Button.Borderless.Colored'。 错误:(4)检索项目的父项时出错:找不到与给定名称匹配的资源' android:TextAppearance.Material.Widget.Button.Colored'。 错误:(3)检索项目的父项时出错:找不到与给定名称匹配的资源' android:TextAppearance.Material.Widget.Button.Borderless.Colored'。 错误:(4)检索项目的父项时出错:找不到与给定名称匹配的资源' android:TextAppearance.Material.Widget.Button.Colored'。 错误:任务':app:processDebugResources'执行失败。 com.android.ide.common.process.ProcessException:无法执行aapt
答案 0 :(得分:2)
马虎错误。您必须使用相同版本。
compile 'com.google.firebase:firebase-auth:10.2.1' //Use this instead of old .
compile 'com.google.android.gms:play-services-maps:10.2.1'
然后清理重建和运行。
答案 1 :(得分:0)
Cordova插件
firebase-> src-> android-> build.gradle
更改
com.google.firebase:firebase-auth:+
到
com.google.firebase:firebase-auth:18.0.0