我已经在我的应用程序中集成了 AppsFlyer。但无法根据我的要求激活和停用跟踪。例如,在 facebook 中,我们使用:
来激活:
AppEventsLogger.activateApp(this);
并停用:
AppEventsLogger.deactivateApp(this);
在 AppsFlyer 教程中,给出了如何启用或禁用跟踪:
AppsFlyerLib.setDeviceTrackingDisabled(true);
@Override
public void onResume() {
super.onResume();
AppsFlyerLib.onActivityResume(this);
}
@Override
public void onPause() {
super.onPause();
AppsFlyerLib.onActivityPause(this);
}
但在我的代码中,它没有采用此代码。
AppsFlyerLib.setDeviceTrackingDisabled
依赖使用:
compile 'com.appsflyer:af-android-sdk:4.3.8@aar'