You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is possible to anonymize specific user identifiers within AppsFlyer analytics. This complies with both the latest privacy requirements (GDPR, COPPA) and Facebook's data and privacy policies. To anonymize an app user.
208
+
It is possible to anonymize specific user identifiers within AppsFlyer analytics.</br>
209
+
This complies with both the latest privacy requirements (GDPR, COPPA) and Facebook's data and privacy policies. To anonymize an app user.
209
210
| parameter | type | description |
210
211
| ---------- |----------|------------------ |
211
212
| shouldAnonymize | boolean | True if want Anonymize user Data (default value is false). |
Copy file name to clipboardExpand all lines: doc/BasicIntegration.md
+31-5Lines changed: 31 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,8 +51,13 @@ appsflyerSdk.initSdk(
51
51
| registerOnDeepLinkingCallback | Set a listener for the [UDL](https://dev.appsflyer.com/hc/docs/unified-deep-linking-udl) response |
52
52
53
53
### startSdk
54
-
`startSDK()`
55
-
In version 6.13.0 of the appslfyer-flutter-plugin SDK we added the option of splitting between the initialization stage and start stage. All you need to do is add the property manualStart: true to the init object, and later call appsFlyer.startSdk() whenever you decide. If this property is set to false or doesn’t exist, the sdk will start after calling appsFlyer.initSdk(...).
Version 6.13.0+ of the AppsFlyer Flutter plugin introduces the option to manually start the SDK. </br>
56
+
To utilise this feature, set the property `manualStart: true` within the initialization configuration. </br>
57
+
Once the `manualStart` option is activated, you can call `appsFlyer.startSdk()` at your discretion. If the `manualStart` property is omitted or set to false, the SDK will start immediately after calling `appsFlyer.initSdk(...)`.
58
+
59
+
`onSuccess`: An optional callback that is triggered after a successful initialization of the SDK.
60
+
`onError`: An optional callback that is fired in case of an error during SDK initialization, providing an error code and an error message.
56
61
57
62
```dart
58
63
// SDK Options
@@ -64,12 +69,33 @@ In version 6.13.0 of the appslfyer-flutter-plugin SDK we added the option of spl
64
69
manualStart: true);
65
70
_appsflyerSdk = AppsflyerSdk(options);
66
71
67
-
// Init of AppsFlyer SDK
72
+
// Initialization of the AppsFlyer SDK
68
73
_appsflyerSdk.initSdk(
69
74
registerConversionDataCallback: true,
70
75
registerOnAppOpenAttributionCallback: true,
71
76
registerOnDeepLinkingCallback: true);
72
77
73
-
//Here we start the SDK
74
-
_appsflyerSdk.startSDK();
78
+
// Starting the SDK with optional success and error callbacks
0 commit comments