gpt4 book ai didi

java - Android studio firebase 集成出现错误

转载 作者:行者123 更新时间:2023-12-02 01:00:26 24 4
gpt4 key购买 nike

我是 android studio 的新手,我正在尝试学习 firebase 并在我的虚拟应用程序中实现 google 登录。

我继续按照谷歌的文档在 build.gradle 文件中包含某些行

在项目/gradle中我添加了类路径“com.google.gms:google-services:4.3.3”

在 app/gradle 中我检查了 apply plugin: 'com.android.application'应用插件:'com.google.gms.google-services'

因为它已经存在,所以我添加了:实现“com.google.firebase:firebase-analytics:17.2.2”

我同步了我的项目,当我尝试运行该应用程序时,出现以下错误:

Manifest merger failed : Attribute application@appComponentFactory value=(android.support.v4.app.CoreComponentFactory) from [com.android.support:support-compat:28.0.0] AndroidManifest.xml:22:18-91
is also present at [androidx.core:core:1.0.0] AndroidManifest.xml:22:18-86 value=(androidx.core.app.CoreComponentFactory).
Suggestion: add 'tools:replace="android:appComponentFactory"' to <application> element at AndroidManifest.xml:5:5-19:19 to override.

请告诉我我做错了什么?我在 Windows 10 上使用 android studio

编辑:这是用户建议的我的 list xml 文件

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.MyName.TestApp">

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

</manifest>

我的应用程序 gradle 文件

apply plugin: 'com.android.application'

android {
compileSdkVersion 28
defaultConfig {
applicationId "com.MyName.TestApp"
minSdkVersion 23
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'com.google.firebase:firebase-analytics:17.2.3'
}

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

打包gradle文件

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

buildscript {
repositories {
google()
jcenter()

}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.1'
classpath 'com.google.gms:google-services:4.3.3'


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

allprojects {
repositories {
google()
jcenter()

}
}

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

最佳答案

如果您想使用 Analytics 版本 17.2.2,则需要升级 androidx。来自文档:

The updated libraries will not work unless you make the following changes in your app:

  1. 将 com.android.tools.build:gradle 升级到 v3.2.1 或更高版本。
  2. 将compileSdkVersion升级到28或更高版本。
  3. 更新您的应用以使用 Jetpack (AndroidX);按照 Migrating to AndroidX. 中的说明进行操作

https://firebase.google.com/support/release-notes/android

关于java - Android studio firebase 集成出现错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60717433/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com