앱 삭제 측정

앱 삭제 측정

iOS

First method

앱스플라이어를 사용하면 앱 삭제를 측정할 수 있습니다. 알림을 처리하려면 다음 파일을 수정해야 합니다: AppDelegate.m. didRegisterForRemoteNotificationsWithDeviceToken을 사용하여 앱 삭제 기능에 등록합니다.

예:

@import AppsFlyerLib;

...

- (void)application:(UIApplication ​*)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *​)deviceToken {
// notify AppsFlyerLib
 [[AppsFlyerLib shared] registerUninstall:deviceToken];
}

앱 삭제 측정에 대해 자세히 알아보기: 앱스플라이어 SDK 지원 사이트

Second method

디바이스 토큰을 앱스플라이어에 전달

예:

appsFlyer.updateServerUninstallToken(deviceToken, (success) => {
  //...
});

Measure app uninstalls Android

앱스플라이어로 전송할 수 있도록 Firebase 디바이스 토큰을 업데이트합니다.

예:

appsFlyer.updateServerUninstallToken(newFirebaseToken, (success) => {
  //...
});

Read more about Android Uninstall Measurement: Appsflyer SDK support site