gpt4 book ai didi

android - 应用程序初始化很慢 : FirebaseApp initialization unsuccessful

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:00:22 27 4
gpt4 key购买 nike

我知道 this question但我认为这对我没有帮助,而且问题看起来略有不同。

我正在开发此应用,我需要实现 AppsFlyer 进行跟踪,并且我只需要使用 Google Play 服务中的 2 个组件:

com.google.android.gms:play-services-ads

com.google.android.gms:play-services-gcm

我使用的是最新版本的 Google Play 服务,即 9.0.2。

问题是在安装应用程序后首次启动时,应用程序需要花费相当长的时间才能启动。没有日志输出,当应用程序开始执行某些操作时,日志中的第一行是:

06-16 16:50:23.782 22368-22368/com.company.app I/FirebaseInitProvider:FirebaseApp initialization unsuccessful

我没有使用 Firebase,我该如何摆脱它?它确实减慢了应用程序的初始化速度。不是很好的用户体验...

编辑:

我已经添加了两个库,一次一个,我意识到 GCM 是导致问题的原因。当我添加时:

com.google.android.gms:play-services-gcm

我开始收到“FirebaseApp 初始化不成功”日志,应用需要一段时间才能启动。也许降级“修复”了问题,但这不是一个很好的解决方案。

最佳答案

我建议您使用 gradle 排除 firebase 组:

compile('com.google.android.gms:play-services-ads:9.0.2') {
exclude group: 'com.google.firebase', module: 'firebase-common'
}

compile('com.google.android.gms:play-services-gcm:9.0.2') {
exclude group: 'com.google.firebase', module: 'firebase-common'
}

或者,简单地应用全局排除配置,如下所示:

configurations {
all*.exclude group: 'com.google.firebase', module: 'firebase-common'
}

希望对您有所帮助:)

关于android - 应用程序初始化很慢 : FirebaseApp initialization unsuccessful,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37864805/

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