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
- Added ability to mark your app as COPPA compliant. You can enable this setting by setting `coppaCompliantEnabled` member of `AdjustConfig` instance to `true`.
Copy file name to clipboardExpand all lines: README.md
+4-11Lines changed: 4 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -104,7 +104,7 @@ You can add Adjust SDK to your Flutter app by adding following to your `pubspec.
104
104
105
105
```yaml
106
106
dependencies:
107
-
adjust_sdk: ^4.30.0
107
+
adjust_sdk: ^4.31.0
108
108
```
109
109
110
110
Then navigate to your project in the terminal and run:
@@ -310,17 +310,9 @@ class MainScreenState extends State<MainScreen> with WidgetsBindingObserver {
310
310
311
311
### <aid="qs-sdk-signature"></a>SDK signature
312
312
313
-
An account manager must activate the Adjust SDK signature. Contact Adjust support ([email protected]) if you are interested in using this feature.
313
+
When you set up the SDK Signature, each SDK communication package is "signed". This lets Adjust’s servers easily detect and reject any install activity that is not legitimate.
314
314
315
-
If the SDK signature has already been enabled on your account and you have access to App Secrets in your Adjust Dashboard, please use the method below to integrate the SDK signature into your app.
316
-
317
-
An App Secret is set by calling `setAppSecret` on your config instance:
318
-
319
-
```dart
320
-
AdjustConfig adjustConfig = new AdjustConfig(yourAppToken, environment);
There are just a few steps involved in setting up the SDK Signature. Please contact your Technical Account Manager or [email protected] to get started.
324
316
325
317
### <aid="qs-adjust-logging"></a>Adjust logging
326
318
@@ -910,6 +902,7 @@ The callback function will be called after the SDK receives the final attributio
910
902
-`costType` the cost type string
911
903
-`costAmount` the cost amount
912
904
-`costCurrency` the cost currency string
905
+
-`fbInstallReferrer` the Facebook install referrer information
913
906
914
907
**Note**: The cost data - `costType`, `costAmount` & `costCurrency` are only available when configured in `AdjustConfig` by setting `needsCost` member to `true`. If not configured or configured, but not being part of the attribution, these fields will have value `null`. This feature is available in SDK v4.26.0 and later.
0 commit comments