我知道约
this question,但我不认为它有助于我,而且问题看起来有些不同.
我正在做这个应用程序,我需要实现AppsFlyer进行跟踪,我只需要使用Google Play Services只有两个组件:
com.google.android.gms:play-services-ads
com.google.android.gms:play-services-gcm
而且我正在使用最新版本的Google Play Services 9.0.2.
问题是,在安装应用程序后的第一个应用程序启动时,该应用程序需要相当多的时间才能启动.没有日志输出,当应用程序开始做某事时,日志的第一行是:
06-16 16:50:23.782 22368-22368/com.company.app I/FirebaseInitProvider:
FirebaseApp initialization unsuccessful
我没有使用Firebase,我该如何摆脱这个?它真的减慢了应用程序的初始化.不是很好的用户体验…
编辑:
我已经添加了两个lib,一次一个,我已经意识到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' }
希望它有帮助:)