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
Copy file name to clipboardExpand all lines: packages/react-native-adjust/README.md
+58Lines changed: 58 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,6 +33,10 @@ After installing this npm package, add the [config plugin](https://docs.expo.io/
33
33
}
34
34
```
35
35
36
+
## Configuration Options
37
+
38
+
### Android 12+ Support
39
+
36
40
If you are targeting Android 12 and above (API level 31), you need to add it in the options of the plugin:
37
41
38
42
```json
@@ -43,6 +47,60 @@ If you are targeting Android 12 and above (API level 31), you need to add it in
43
47
}
44
48
```
45
49
50
+
### SDK Signature
51
+
46
52
This will add the [appropriate permission](https://github.com/adjust/react_native_sdk#add-permission-to-gather-google-advertising-id) for you.
47
53
54
+
To set up Adjust [SDK Signature](https://github.com/adjust/react_native_sdk/blob/master/README.md#sdk-signature) you need to specify the path for the xcframework and the aar file.
55
+
```json
56
+
{
57
+
"expo": {
58
+
"plugins": [
59
+
"@config-plugins/react-native-adjust",
60
+
{
61
+
"targetAndroid12": true ,
62
+
"sdkSignature" : {
63
+
"android" : "./path/to.aar",
64
+
"ios" : "./path/to.xcframework"
65
+
}
66
+
}
67
+
]
68
+
}
69
+
}
70
+
```
71
+
72
+
### Meta Install Referrer
73
+
74
+
If you need to track Meta (Facebook) install referrers, you can enable the Meta install referrer dependency:
0 commit comments