1

我正在通过firebase进行身份验证,因为当我添加implementation 'com.firebaseui:firebase-ui-auth:3.3.0'同步AAPT2 error: check logs for detailsgradle后出现错误。这是我的 build.gradle 文件。

构建.gradle(应用程序)

apply plugin: 'com.android.application'
repositories {
mavenLocal()
flatDir {
    dirs 'libs'
}
}

android {
compileSdkVersion 24
buildToolsVersion '27.0.3'

defaultConfig {
    applicationId "com.google.firebase.udacity.friendlychat"
    minSdkVersion 16
    targetSdkVersion 24
    versionCode 1
    versionName "1.0"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
packagingOptions {
    exclude 'META-INF/LICENSE'
    exclude 'META-INF/LICENSE-FIREBASE.txt'
    exclude 'META-INF/NOTICE'
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
testImplementation 'junit:junit:4.12'

implementation 'com.android.support:design:24.2.1'
implementation 'com.android.support:appcompat-v7:24.2.1'


//  Firebase
implementation 'com.google.firebase:firebase-database:12.0.1'

implementation 'com.firebaseui:firebase-ui-auth:3.3.0'
implementation 'com.google.firebase:firebase-auth:12.0.1'

// Displaying images
implementation 'com.github.bumptech.glide:glide:3.6.1'
}

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

和 build.gradle(Project)

// Top-level build file where you can add configuration options common to 
all sub-projects/modules.

buildscript {
repositories {
    jcenter()
    mavenLocal()
    google()
}
dependencies {
    classpath 'com.android.tools.build:gradle:3.1.0'
    classpath 'com.google.gms:google-services:3.2.1' // google-services 
plugin



    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
}
}

allprojects {
repositories {
    jcenter()
    mavenLocal()
    maven {
        url "https://maven.google.com" // Google's Maven repository
    }
}
}

task clean(type: Delete) {
delete rootProject.buildDir
}

我删除它implementation 'com.firebaseui:firebase-ui-auth:3.3.0'的那一刻,错误就消失了。我认为添加它是在创建AAPT2 error.

Google SDK ToolsGoogle Repository并且Google Play Services也已安装。如果可能,还请解释这是什么AAPT2 error以及如何发生。

4

3 回答 3

2

用这个

implementation 'com.android.support:design:27.0.3'
implementation 'com.android.support:appcompat-v7:27.0.3'

而不是这个

implementation 'com.android.support:design:24.2.1'
implementation 'com.android.support:appcompat-v7:24.2.1'

更新compileSdkVersion 27targetSdkVersion 27

于 2018-04-07T12:35:09.257 回答
0

在 Android Studio 中,当您使用 gradle 3.0 的 android 插件时,默认情况下会启用 Aapt2。

这主要是为了改进增量资源处理,查看页面了解更多信息。

如果您不想看到此错误,可以通过在 gradle.properties 中添加以下行来禁用它。

android.enableAapt2=false

于 2018-04-07T13:34:37.123 回答
0

解决了!!问题在于版本控制。

您的应用的 build.gradle 也必须更新以指定至少 26 的 compileSdkVersion (Android O)

我花了几个小时才弄清楚。

在此处阅读更多信息,https://firebase.googleblog.com/2017/08/some-updates-to-apps-using-google-play.html

于 2018-05-18T05:01:39.333 回答