forked from AppsFlyerSDK/appsflyer-react-native-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
executable file
·1063 lines (948 loc) · 33.2 KB
/
index.js
File metadata and controls
executable file
·1063 lines (948 loc) · 33.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import { NativeEventEmitter, NativeModules } from "react-native";
import AppsFlyerConstants from "./PurchaseConnector/constants/constants";
import InAppPurchaseValidationResult from "./PurchaseConnector/models/in_app_purchase_validation_result";
import ValidationFailureData from "./PurchaseConnector/models/validation_failure_data";
import SubscriptionValidationResult from "./PurchaseConnector/models/subscription_validation_result";
const { RNAppsFlyer } = NativeModules;
const appsFlyer = {};
const eventsMap = {};
const appsFlyerEventEmitter = new NativeEventEmitter(RNAppsFlyer);
//Purchase Connector native bridge objects
const { PCAppsFlyer } = NativeModules;
const AppsFlyerPurchaseConnector = {};
const pcEventsMap = {};
const purchaseConnectorEventEmitter = new NativeEventEmitter(PCAppsFlyer);
export const StoreKitVersion = {
SK1: "SK1",
SK2: "SK2",
};
function startObservingTransactions() {
PCAppsFlyer.startObservingTransactions();
}
AppsFlyerPurchaseConnector.startObservingTransactions =
startObservingTransactions;
function stopObservingTransactions() {
PCAppsFlyer.stopObservingTransactions();
}
AppsFlyerPurchaseConnector.stopObservingTransactions =
stopObservingTransactions;
// Purchase Connector Android methods
AppsFlyerPurchaseConnector.onSubscriptionValidationResultSuccess = (
onSuccess
) => {
if (typeof onSuccess !== "function") {
throw new Error("onSuccess callback must be a function");
}
const subValidationSuccessListener =
purchaseConnectorEventEmitter.addListener(
AppsFlyerConstants.SUBSCRIPTION_VALIDATION_SUCCESS,
(result) => {
try {
const parsedResults = Object.entries(result).reduce(
(acc, [purchaseToken, validationResult]) => {
acc[purchaseToken] = SubscriptionValidationResult.fromJson(validationResult);
return acc;
},
{}
);
onSuccess(parsedResults);
} catch (error) {
console.error(
"Failed to parse subscription validation results:",
error
);
}
}
);
pcEventsMap[AppsFlyerConstants.SUBSCRIPTION_VALIDATION_SUCCESS] =
subValidationSuccessListener;
return function remove() {
subValidationSuccessListener.remove();
};
};
AppsFlyerPurchaseConnector.onSubscriptionValidationResultFailure = (
onFailure
) => {
if (typeof onFailure !== "function") {
throw new Error("onFailure callback must be a function");
}
const subValidationFailureListener =
purchaseConnectorEventEmitter.addListener(
AppsFlyerConstants.SUBSCRIPTION_VALIDATION_FAILURE,
(result) => {
try {
const failureValidationResult =
ValidationFailureData.fromJson(result);
onFailure(failureValidationResult);
} catch (error) {
console.error(
"Failed to handle subscription validation result:",
error
);
}
}
);
pcEventsMap[AppsFlyerConstants.SUBSCRIPTION_VALIDATION_FAILURE] =
subValidationFailureListener;
return function remove() {
subValidationFailureListener.remove();
};
};
AppsFlyerPurchaseConnector.onInAppValidationResultSuccess = (onSuccess) => {
if (typeof onSuccess !== "function") {
throw new Error("onSuccess callback must be a function");
}
const inAppValidationSuccessListener =
purchaseConnectorEventEmitter.addListener(
AppsFlyerConstants.IN_APP_PURCHASE_VALIDATION_SUCCESS,
(result) => {
try {
const parsedResults = Object.entries(result).reduce(
(acc, [purchaseToken, validationResult]) => {
acc[purchaseToken] = InAppPurchaseValidationResult.fromJson(validationResult);
return acc;
},
{}
);
onSuccess(parsedResults);
} catch (error) {
console.error(
"Failed to handle in-app purchase validation results:",
error
);
}
}
);
pcEventsMap[AppsFlyerConstants.IN_APP_PURCHASE_VALIDATION_SUCCESS] =
inAppValidationSuccessListener;
return function remove() {
inAppValidationSuccessListener.remove();
};
};
AppsFlyerPurchaseConnector.onInAppValidationResultFailure = (onFailure) => {
if (typeof onFailure !== "function") {
throw new Error("onFailure callback must be a function");
}
const inAppValidationFailureListener =
purchaseConnectorEventEmitter.addListener(
AppsFlyerConstants.IN_APP_PURCHASE_VALIDATION_FAILURE,
(result) => {
try {
const failureValidationResult =
ValidationFailureData.fromJson(result);
onFailure(failureValidationResult);
} catch (error) {
console.error(
"Failed to handle in-app purchase validation result:",
error
);
}
}
);
pcEventsMap[AppsFlyerConstants.IN_APP_PURCHASE_VALIDATION_FAILURE] =
inAppValidationFailureListener;
return function remove() {
inAppValidationFailureListener.remove();
};
};
AppsFlyerPurchaseConnector.setSubscriptionPurchaseEventDataSource = (dataSource) => {
if (!dataSource || typeof dataSource !== 'object') {
throw new Error('dataSource must be an object');
}
PCAppsFlyer.setSubscriptionPurchaseEventDataSource(dataSource);
};
AppsFlyerPurchaseConnector.setInAppPurchaseEventDataSource = (dataSource) => {
if (!dataSource || typeof dataSource !== 'object') {
throw new Error('dataSource must be an object');
}
PCAppsFlyer.setInAppPurchaseEventDataSource(dataSource);
};
// Purchase Connector iOS methods
function logConsumableTransaction(transactionId){
PCAppsFlyer.logConsumableTransaction(transactionId);
};
AppsFlyerPurchaseConnector.logConsumableTransaction = logConsumableTransaction;
AppsFlyerPurchaseConnector.OnReceivePurchaseRevenueValidationInfo = (
callback
) => {
if (typeof callback !== "function") {
throw new Error("The callback must be a function");
}
const revenueValidationListener = purchaseConnectorEventEmitter.addListener(
AppsFlyerConstants.DID_RECEIVE_PURCHASE_REVENUE_VALIDATION_INFO,
(info) => {
try {
if (info.error) {
callback(null, info.error);
}else{
const validationInfo = JSON.stringify(info);
callback(validationInfo, null);
}
} catch (error) {
console.error(
"Failed to handle iOS validation result:",
error
);
}
}
);
pcEventsMap[AppsFlyerConstants.DID_RECEIVE_PURCHASE_REVENUE_VALIDATION_INFO] =
revenueValidationListener;
return function remove() {
revenueValidationListener.remove();
};
};
AppsFlyerPurchaseConnector.setPurchaseRevenueDataSource = (dataSource) => {
if (!dataSource || typeof dataSource !== 'object') {
throw new Error('dataSource must be an object');
}
PCAppsFlyer.setPurchaseRevenueDataSource(dataSource);
};
AppsFlyerPurchaseConnector.setPurchaseRevenueDataSourceStoreKit2 = (dataSource) => {
if (!dataSource || typeof dataSource !== 'object') {
throw new Error('dataSource must be an object');
}
PCAppsFlyer.setPurchaseRevenueDataSourceStoreKit2(dataSource);
};
const AppsFlyerPurchaseConnectorConfig = {
setConfig: ({ logSubscriptions, logInApps, sandbox, storeKitVersion }) => {
return {
logSubscriptions,
logInApps,
sandbox,
storeKitVersion: storeKitVersion || StoreKitVersion.SK1, // Default to SK1 if not provided
};
},
};
function create(config) {
if (!config) {
throw new MissingConfigurationException();
}
PCAppsFlyer.create(config);
}
AppsFlyerPurchaseConnector.create = create;
export { AppsFlyerPurchaseConnector, AppsFlyerPurchaseConnectorConfig };
/********************************************************/
function initSdkCallback(options, successC, errorC) {
if (
typeof options.appId !== "string" &&
typeof options.appId !== "undefined"
) {
return errorC("appId should be a string!");
}
if (
typeof options.isDebug !== "boolean" &&
typeof options.isDebug !== "undefined"
) {
return errorC("isDebug should be a boolean!");
}
return RNAppsFlyer.initSdkWithCallBack(options, successC, errorC);
}
function initSdkPromise(options) {
if (
typeof options.appId !== "string" &&
typeof options.appId !== "undefined"
) {
return Promise.reject("appId should be a string!");
}
if (
typeof options.isDebug !== "boolean" &&
typeof options.isDebug !== "undefined"
) {
return Promise.reject("isDebug should be a boolean!");
}
return RNAppsFlyer.initSdkWithPromise(options);
}
function initSdk(options, success, error) {
if (success && error) {
//initSdk is a callback function
initSdkCallback(options, success, error);
} else if (!success) {
//initSdk is a promise function
return initSdkPromise(options);
}
}
appsFlyer.initSdk = initSdk;
function logEventCallback(eventName, eventValues, successC, errorC) {
return RNAppsFlyer.logEvent(eventName, eventValues, successC, errorC);
}
function logEventPromise(eventName, eventValues) {
return RNAppsFlyer.logEventWithPromise(eventName, eventValues);
}
function logEvent(eventName, eventValues, success, error) {
if (success && error) {
//logEvent is a callback function
logEventCallback(eventName, eventValues, success, error);
} else if (!success) {
// logEvent is a promise function
return logEventPromise(eventName, eventValues);
}
}
appsFlyer.logEvent = logEvent;
export const MEDIATION_NETWORK = Object.freeze({
IRONSOURCE : "ironsource",
APPLOVIN_MAX : "applovin_max",
GOOGLE_ADMOB : "google_admob",
FYBER : "fyber",
APPODEAL : "appodeal",
ADMOST : "Admost",
TOPON : "Topon",
TRADPLUS : "Tradplus",
YANDEX : "Yandex",
CHARTBOOST : "chartboost",
UNITY : "Unity",
TOPON_PTE : "topon_pte",
CUSTOM_MEDIATION : "custom_mediation",
DIRECT_MONETIZATION_NETWORK : "direct_monetization_network"
});
function logAdRevenue(adRevenueData) {
RNAppsFlyer.logAdRevenue(adRevenueData);
}
appsFlyer.logAdRevenue = logAdRevenue;
/**
* Manually record the location of the user
*
* @param longitude latitude as double.
* @param latitude latitude as double.
* @param callback success callback function
*/
appsFlyer.logLocation = (longitude, latitude, callback) => {
if (
longitude == null ||
latitude == null ||
longitude == "" ||
latitude == ""
) {
console.log("longitude or latitude are missing!");
return;
}
if (typeof longitude != "number" || typeof latitude != "number") {
longitude = parseFloat(longitude);
latitude = parseFloat(latitude);
}
if (callback) {
return RNAppsFlyer.logLocation(longitude, latitude, callback);
} else {
return RNAppsFlyer.logLocation(longitude, latitude, (result) =>
console.log(result)
);
}
};
/**
* Set the user emails and encrypt them.
*
* @param options latitude as double.
* @param successC success callback function.
* @param errorC error callback function.
*/
appsFlyer.setUserEmails = (options, successC, errorC) => {
return RNAppsFlyer.setUserEmails(options, successC, errorC);
};
/**
* Set additional data to be sent to AppsFlyer.
*
* @param additionalData additional data Dictionary.
* @param successC success callback function.
*/
appsFlyer.setAdditionalData = (additionalData, successC) => {
if (successC) {
return RNAppsFlyer.setAdditionalData(additionalData, successC);
} else {
return RNAppsFlyer.setAdditionalData(additionalData, (result) =>
console.log(result)
);
}
};
/**
* Get AppsFlyer's unique device ID is created for every new install of an app.
*
* @callback callback function that returns (error,uid)
*/
appsFlyer.getAppsFlyerUID = (callback) => {
return RNAppsFlyer.getAppsFlyerUID(callback);
};
/**
* Manually pass the Firebase / GCM Device Token for Uninstall measurement.
*
* @param token Firebase Device Token.
* @param successC success callback function.
*/
appsFlyer.updateServerUninstallToken = (token, successC) => {
if (token == null) {
token = "";
}
if (typeof token != "string") {
token = token.toString();
}
if (successC) {
return RNAppsFlyer.updateServerUninstallToken(token, successC);
} else {
return RNAppsFlyer.updateServerUninstallToken(token, (result) =>
console.log(result)
);
}
};
/**
* Setting your own customer ID enables you to cross-reference your own unique ID with AppsFlyer's unique ID and the other devices' IDs.
* This ID is available in AppsFlyer CSV reports along with Postback APIs for cross-referencing with your internal IDs.
*
* @param {string} userId Customer ID for client.
* @param successC callback function.
*/
appsFlyer.setCustomerUserId = (userId, successC) => {
if (userId == null) {
userId = "";
}
if (typeof userId != "string") {
userId = userId.toString();
}
if (successC) {
return RNAppsFlyer.setCustomerUserId(userId, successC);
} else {
return RNAppsFlyer.setCustomerUserId(userId, (result) =>
console.log(result)
);
}
};
/**
* Once this API is invoked, our SDK no longer communicates with our servers and stops functioning.
* In some extreme cases you might want to shut down all SDK activity due to legal and privacy compliance.
* This can be achieved with the stop API.
*
* @param {boolean} isStopped boolean should SDK be stopped.
* @param successC callback function.
*/
appsFlyer.stop = (isStopped, successC) => {
if (successC) {
return RNAppsFlyer.stop(isStopped, successC);
} else {
return RNAppsFlyer.stop(isStopped, (result) => console.log(result));
}
};
/**
* Opt-out of collection of IMEI.
* If the app does NOT contain Google Play Services, device IMEI is collected by the SDK.
* However, apps with Google play services should avoid IMEI collection as this is in violation of the Google Play policy.
*
* @param {boolean} isCollect boolean, false to opt out.
* @param successC callback function.
* @platform android
*/
appsFlyer.setCollectIMEI = (isCollect, successC) => {
return RNAppsFlyer.setCollectIMEI(isCollect, successC);
};
/**
* Opt-out of collection of Android ID.
* If the app does NOT contain Google Play Services, Android ID is collected by the SDK.
* However, apps with Google play services should avoid Android ID collection as this is in violation of the Google Play policy.
*
* @param {boolean} isCollect boolean, false to opt out.
* @param successC callback function.
* @platform android
*/
appsFlyer.setCollectAndroidID = (isCollect, successC) => {
return RNAppsFlyer.setCollectAndroidID(isCollect, successC);
};
/**
* Set the OneLink ID that should be used for User-Invite-API.
* The link that is generated for the user invite will use this OneLink as the base link.
*
* @param {string} oneLinkID OneLink ID obtained from the AppsFlyer Dashboard.
* @param successC callback function.
*/
appsFlyer.setAppInviteOneLinkID = (oneLinkID, successC) => {
if (oneLinkID == null) {
oneLinkID = "";
}
if (typeof oneLinkID != "string") {
oneLinkID = oneLinkID.toString();
}
if (successC) {
return RNAppsFlyer.setAppInviteOneLinkID(oneLinkID, successC);
} else {
return RNAppsFlyer.setAppInviteOneLinkID(oneLinkID, (result) =>
console.log(result)
);
}
};
/**
* The LinkGenerator class builds the invite URL according to various setter methods which allow passing on additional information on the click.
* @see https://support.appsflyer.com/hc/en-us/articles/115004480866-User-invite-attribution-
*
* @param parameters Dictionary.
* @param success success callback function..
* @param error error callback function.
*/
appsFlyer.generateInviteLink = (parameters, success, error) => {
return RNAppsFlyer.generateInviteLink(parameters, success, error);
};
/**
* To attribute an impression use the following API call.
* Make sure to use the promoted App ID as it appears within the AppsFlyer dashboard.
*
* @param appId promoted App ID.
* @param campaign cross promotion campaign.
* @param parameters additional params to be added to the attribution link
*/
appsFlyer.logCrossPromotionImpression = (appId, campaign, parameters) => {
if (appId == null || appId == "") {
console.log("appid is missing!");
return;
}
if (campaign == null) {
campaign = "";
}
if (typeof appId != "string" || typeof campaign != "string") {
appId = appId.toString();
campaign = campaign.toString();
}
return RNAppsFlyer.logCrossPromotionImpression(appId, campaign, parameters);
};
/**
* Use the following API to attribute the click and launch the app store's app page.
*
* @param appId promoted App ID.
* @param campaign cross promotion campaign.
* @param params additional user params.
*/
appsFlyer.logCrossPromotionAndOpenStore = (appId, campaign, params) => {
if (appId == null || appId == "") {
console.log("appid is missing!");
return;
}
if (campaign == null) {
campaign = "";
}
if (typeof appId != "string" || typeof campaign != "string") {
appId = appId.toString();
campaign = campaign.toString();
}
return RNAppsFlyer.logCrossPromotionAndOpenStore(appId, campaign, params);
};
/**
* Setting user local currency code for in-app purchases.
* The currency code should be a 3 character ISO 4217 code. (default is USD).
* You can set the currency code for all events by calling the following method.
* @param currencyCode
* @param successC success callback function.
*/
appsFlyer.setCurrencyCode = (currencyCode, successC) => {
if (currencyCode == null || currencyCode == "") {
console.log("currencyCode is missing!");
return;
}
if (typeof currencyCode != "string") {
currencyCode = currencyCode.toString();
}
if (successC) {
return RNAppsFlyer.setCurrencyCode(currencyCode, successC);
} else {
return RNAppsFlyer.setCurrencyCode(currencyCode, (result) =>
console.log(result)
);
}
};
/**
* Accessing AppsFlyer Attribution / Conversion Data from the SDK (Deferred Deeplinking)
* @param callback: contains fields:
* status: success/failure
* type:
* onAppOpenAttribution
* onInstallConversionDataLoaded
* onAttributionFailure
* onInstallConversionFailure
* data: metadata,
* @example {"status":"success","type":"onInstallConversionDataLoaded","data":{"af_status":"Organic","af_message":"organic install"}}
*
* @returns {remove: function - unregister listener}
*/
appsFlyer.onInstallConversionData = (callback) => {
const listener = appsFlyerEventEmitter.addListener(
"onInstallConversionDataLoaded",
(_data) => {
if (callback && typeof callback === typeof Function) {
try {
let data = JSON.parse(_data);
callback(data);
} catch (_error) {
//throw new AFParseJSONException("...");
//TODO: for today we return an error in callback
callback(new AFParseJSONException("Invalid data structure", _data));
}
}
}
);
eventsMap["onInstallConversionData"] = listener;
// unregister listener (suppose should be called from componentWillUnmount() )
return function remove() {
listener.remove();
};
};
appsFlyer.onInstallConversionFailure = (callback) => {
const listener = appsFlyerEventEmitter.addListener(
"onInstallConversionFailure",
(_data) => {
if (callback && typeof callback === typeof Function) {
try {
let data = JSON.parse(_data);
callback(data);
} catch (_error) {
//throw new AFParseJSONException("...");
//TODO: for today we return an error in callback
callback(new AFParseJSONException("Invalid data structure", _data));
}
}
}
);
eventsMap["onInstallConversionFailure"] = listener;
// unregister listener (suppose should be called from componentWillUnmount() )
return function remove() {
listener.remove();
};
};
appsFlyer.onAppOpenAttribution = (callback) => {
const listener = appsFlyerEventEmitter.addListener(
"onAppOpenAttribution",
(_data) => {
if (callback && typeof callback === typeof Function) {
try {
let data = JSON.parse(_data);
callback(data);
} catch (_error) {
callback(new AFParseJSONException("Invalid data structure", _data));
}
}
}
);
eventsMap["onAppOpenAttribution"] = listener;
// unregister listener (suppose should be called from componentWillUnmount() )
return function remove() {
listener.remove();
};
};
appsFlyer.onAttributionFailure = (callback) => {
const listener = appsFlyerEventEmitter.addListener(
"onAttributionFailure",
(_data) => {
if (callback && typeof callback === typeof Function) {
try {
let data = JSON.parse(_data);
callback(data);
} catch (_error) {
callback(new AFParseJSONException("Invalid data structure", _data));
}
}
}
);
eventsMap["onAttributionFailure"] = listener;
// unregister listener (suppose should be called from componentWillUnmount() )
return function remove() {
listener.remove();
};
};
appsFlyer.onDeepLink = (callback) => {
const listener = appsFlyerEventEmitter.addListener(
"onDeepLinking",
(_data) => {
if (callback && typeof callback === typeof Function) {
try {
let data = JSON.parse(_data);
callback(data);
} catch (_error) {
callback(new AFParseJSONException("Invalid data structure", _data));
}
}
}
);
eventsMap["onDeepLinking"] = listener;
// unregister listener (suppose should be called from componentWillUnmount() )
return function remove() {
listener.remove();
};
};
/**
* TODO: Remove comment when the API is stable
* New validateAndLogInAppPurchase API with AFPurchaseDetails support.
*
appsFlyer.validateAndLogInAppPurchaseV2 = (purchaseDetails, additionalParameters , callback) => {
const listener = appsFlyerEventEmitter.addListener("onValidationResult", (_data) => {
if (callback && typeof callback === 'function') {
if (typeof _data === 'string') {
try {
const parsed = JSON.parse(_data);
callback(parsed);
} catch {
callback(new AFParseJSONException('Invalid JSON string', _data));
}
} else {
callback(_data);
}
}
});
eventsMap["onValidationResult"] = listener;
RNAppsFlyer.validateAndLogInAppPurchaseV2(purchaseDetails, additionalParameters);
// unregister listener (suppose should be called from componentWillUnmount() )
return function remove() {
listener.remove();
};
};
*/
/**
* Anonymize user Data.
* Use this API during the SDK Initialization to explicitly anonymize a user's installs, events and sessions.
* Default is false
* @param shouldAnonymize boolean
* @param successC success callback function.
*/
appsFlyer.anonymizeUser = (shouldAnonymize, successC) => {
if (successC) {
return RNAppsFlyer.anonymizeUser(shouldAnonymize, successC);
} else {
return RNAppsFlyer.anonymizeUser(shouldAnonymize, (result) =>
console.log(result)
);
}
};
/**
* Set Onelink custom/branded domains
* Use this API during the SDK Initialization to indicate branded domains.
* For more information please refer to https://support.appsflyer.com/hc/en-us/articles/360002329137-Implementing-Branded-Links
* @param domains array of strings
* @param successC success callback function.
* @param errorC error callback function.
*/
appsFlyer.setOneLinkCustomDomains = (domains, successC, errorC) => {
return RNAppsFlyer.setOneLinkCustomDomains(domains, successC, errorC);
};
/**
* Set domains used by ESP when wrapping your deeplinks.
* Use this API during the SDK Initialization to indicate that links from certain domains should be resolved
* in order to get original deeplink
* For more information please refer to https://support.appsflyer.com/hc/en-us/articles/360001409618-Email-service-provider-challenges-with-iOS-Universal-links
* @param urls array of strings
* @param successC success callback function.
* @param errorC error callback function.
*/
appsFlyer.setResolveDeepLinkURLs = (urls, successC, errorC) => {
return RNAppsFlyer.setResolveDeepLinkURLs(urls, successC, errorC);
};
/**
* This function allows developers to manually re-trigger onAppOpenAttribution with a specific link (URI or URL),
* without recording a new re-engagement.
* This method may be required if the app needs to redirect users based on the given link,
* or resolve the AppsFlyer short URL while staying in the foreground/opened. This might be needed because
* regular onAppOpenAttribution callback is only called if the app was opened with the deep link.
* @param urlString String representing the URL that needs to be resolved/returned in the onAppOpenAttribution callback
* @param callback Result callback
*/
appsFlyer.performOnAppAttribution = (urlString, successC, errorC) => {
if (typeof urlString != "string") {
urlString = urlString.toString();
}
return RNAppsFlyer.performOnAppAttribution(urlString, successC, errorC);
};
/**
* @deprecated starting SDK version 6.4.0, please use setSharingFilterForPartners()
* Used by advertisers to exclude **all** networks/integrated partners from getting data.
* Learn more - https://support.appsflyer.com/hc/en-us/articles/207032126#additional-apis-exclude-partners-from-getting-data
*/
appsFlyer.setSharingFilterForAllPartners = () => {
return appsFlyer.setSharingFilterForPartners(["all"]);
};
/**
* @deprecated starting SDK version 6.4.0, please use setSharingFilterForPartners()
* Used by advertisers to exclude specified networks/integrated partners from getting data.
* Learn more - https://support.appsflyer.com/hc/en-us/articles/207032126#additional-apis-exclude-partners-from-getting-data
* @param partners Comma separated array of partners that need to be excluded
* @param successC Success callback
* @param errorC Error callback
*/
appsFlyer.setSharingFilter = (partners, successC, errorC) => {
return appsFlyer.setSharingFilterForPartners(partners);
};
/**
* Disables IDFA collection in iOS and Advertising ID in Android
* @param shouldDisable Flag to disable/enable IDFA collection
*/
appsFlyer.disableAdvertisingIdentifier = (isDisable) => {
return RNAppsFlyer.disableAdvertisingIdentifier(isDisable);
};
/**
* Disables app vendor identifier (IDFV) collection in iOS
* @param shouldDisable Flag to disable/enable IDFA collection
* @platform iOS only
*/
appsFlyer.disableIDFVCollection = (shouldDisable) => {
return RNAppsFlyer.disableIDFVCollection(shouldDisable);
};
/**
* Disables Apple Search Ads collecting
* @param shouldDisable Flag to disable/enable Apple Search Ads data collection
* @platform iOS only
*/
appsFlyer.disableCollectASA = (shouldDisable) => {
return RNAppsFlyer.disableCollectASA(shouldDisable);
};
// Export AFPurchaseType enum for the new validateAndLogInAppPurchase API
export const AFPurchaseType = {
SUBSCRIPTION: "subscription",
ONE_TIME_PURCHASE: "one_time_purchase"
};
/**
* [LEGACY WARNING] This is the legacy validateAndLogInAppPurchase API.
*/
appsFlyer.validateAndLogInAppPurchase = (purchaseInfo, successCallback, errorCallback) => {
console.log('[AppsFlyer] Using legacy validateAndLogInAppPurchase API');
return RNAppsFlyer.validateAndLogInAppPurchase(purchaseInfo, successCallback, errorCallback);
};
appsFlyer.setUseReceiptValidationSandbox = (isSandbox) => {
return RNAppsFlyer.setUseReceiptValidationSandbox(isSandbox);
};
/**
*
*Push-notification campaigns are used to create fast re-engagements with existing users.
*AppsFlyer supplies an open-for-all solution, that enables measuring the success of push-notification campaigns, for both iOS and Android platforms.
* Learn more - https://support.appsflyer.com/hc/en-us/articles/207364076-Measuring-Push-Notification-Re-Engagement-Campaigns
* @param pushPayload
*/
appsFlyer.sendPushNotificationData = (pushPayload, errorC = null) => {
return RNAppsFlyer.sendPushNotificationData(pushPayload, errorC);
};
/**
* Set a custom host
* @param hostPrefix
* @param hostName
* @param successC: success callback
*/
appsFlyer.setHost = (hostPrefix, hostName, successC) => {
RNAppsFlyer.setHost(hostPrefix, hostName, successC);
};
/**
* The addPushNotificationDeepLinkPath method provides app owners with a flexible interface for configuring how deep links are extracted from push notification payloads.
* for more information: https://support.appsflyer.com/hc/en-us/articles/207032126-Android-SDK-integration-for-developers#core-apis-65-configure-push-notification-deep-link-resolution
* @param path: an array of string that represents the path
* @param successC: success callback
* @param errorC: error callback
*/
appsFlyer.addPushNotificationDeepLinkPath = (path, successC, errorC) => {
RNAppsFlyer.addPushNotificationDeepLinkPath(path, successC, errorC);
};
/**
* enable or disable SKAD support. set True if you want to disable it!
* @param isDisabled
*/
appsFlyer.disableSKAD = (disableSkad) => {
return RNAppsFlyer.disableSKAD(disableSkad);
};
/**
* Set the language of the device. The data will be displayed in Raw Data Reports
* @param language
*/
appsFlyer.setCurrentDeviceLanguage = (language) => {
if (typeof language === "string") {
return RNAppsFlyer.setCurrentDeviceLanguage(language);
}
};
/**
* Used by advertisers to exclude specified networks/integrated partners from getting data.
*/
appsFlyer.setSharingFilterForPartners = (partners) => {
return RNAppsFlyer.setSharingFilterForPartners(partners);
};
/**
* Allows sending custom data for partner integration purposes.
* @param partnerId: ID of the partner (usually suffixed with "_int").
* @param partnerData: Customer data, depends on the integration configuration with the specific partner.
*/
appsFlyer.setPartnerData = (partnerId, partnerData) => {
if (typeof partnerId === "string" && typeof partnerData === "object") {
return RNAppsFlyer.setPartnerData(partnerId, partnerData);
}
};
/**
* Matches URLs that contain contains as a substring and appends query parameters to them. In case the URL does not match, parameters are not appended to it.
* @param contains: The string to check in URL.
* @param parameters: Parameters to append to the deeplink url after it passed validation.
*/
appsFlyer.appendParametersToDeepLinkingURL = (contains, parameters) => {
if (typeof contains === "string" && typeof parameters === "object") {
return RNAppsFlyer.appendParametersToDeepLinkingURL(contains, parameters);
}
};
appsFlyer.setDisableNetworkData = (disable) => {
return RNAppsFlyer.setDisableNetworkData(disable);
};
appsFlyer.startSdk = () => {
return RNAppsFlyer.startSdk();
};
appsFlyer.performOnDeepLinking = () => {
return RNAppsFlyer.performOnDeepLinking();
};
/**
* Disable the collection of AppSet ID.
* This method is only relevant for Android platform.
*/
appsFlyer.disableAppSetId = () => {
return RNAppsFlyer.disableAppSetId();
};
/**
* instruct the SDK to collect the TCF data from the device.
* @param enabled: if the sdk should collect the TCF data. true/false
*/
appsFlyer.enableTCFDataCollection = (enabled) => {