appsflyer-capacitor-plugin 6.4.4 → 6.8.0-rc1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/README.md +2 -2
- package/android/build.gradle +3 -3
- package/android/src/main/AndroidManifest.xml +2 -1
- package/android/src/main/java/capacitor/plugin/appsflyer/sdk/AFHelpers.kt +1 -1
- package/android/src/main/java/capacitor/plugin/appsflyer/sdk/AppsFlyerConstants.kt +59 -63
- package/android/src/main/java/capacitor/plugin/appsflyer/sdk/AppsFlyerPlugin.kt +65 -103
- package/dist/esm/definitions.d.ts +6 -0
- package/ios/Plugin/AppsFlyerPlugin.swift +559 -554
- package/package.json +2 -2
- package/src/definitions.ts +7 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "appsflyer-capacitor-plugin",
|
|
3
|
-
"version": "6.
|
|
4
|
-
"iosSdkVersion": "6.
|
|
3
|
+
"version": "6.8.0-rc1",
|
|
4
|
+
"iosSdkVersion": "6.8.0",
|
|
5
5
|
"description": "AppsFlyer SDK plugin for Capacitor",
|
|
6
6
|
"main": "dist/plugin.cjs.js",
|
|
7
7
|
"module": "dist/esm/index.js",
|
package/src/definitions.ts
CHANGED
|
@@ -239,5 +239,12 @@ export interface AppsFlyerPlugin {
|
|
|
239
239
|
*
|
|
240
240
|
*/
|
|
241
241
|
logInvite(data : AFLogInvite): Promise<AFRes>;
|
|
242
|
+
|
|
243
|
+
/**
|
|
244
|
+
* Use to opt-out of collecting the network operator name (carrier) and sim operator name from the device.
|
|
245
|
+
*
|
|
246
|
+
* @param disable Defaults to false
|
|
247
|
+
*/
|
|
248
|
+
setDisableNetworkData(disable : AFDisable): Promise<void>;
|
|
242
249
|
}
|
|
243
250
|
|