1

我已经在我的应用程序中集成了 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'
4

1 回答 1

1

选择退出(又名 COPPA)可从 4.7.0(您使用4.3.8)开始。最新的 Android 版本请参见此处

一旦您设置AppsFlyerLib.setDeviceTrackingDisabled(true);- 标志deviceTrackingDisabled:true将被发送到 AppsFlyer 并且不会存储数据。

于 2017-03-20T10:51:42.490 回答