我已经集成了 AppsFlyer SDK 用于分析,它正在跟踪应用程序安装,但不知何故在使用卸载功能时它会崩溃。
我已经在 MyApplication 中初始化了 SDK
AppsFlyerLib.getInstance().startTracking(this, Constants.APPS_FLYER_KEY);
我的应用程序中没有 GCM/FCM,所以我遵循了Android 卸载跟踪
所以我在我的清单中写了这段代码
<service android:name="com.appsflyer.FirebaseInstanceIdListener">
<intent-filter>
<action android:name="com.google.firebase.INSTANCE_ID_EVENT" />
</intent-filter>
</service>
但它无法找到FirebaseInstanceIdListener
类
Caused by: java.lang.ClassNotFoundException: Didn't find class "com.appsflyer.FirebaseInstanceIdListener"