apps-sdk 1.0.60 → 1.0.61
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/config.js +1 -1
- package/package.json +1 -1
- package/src/libraries/AdJust.js +2 -2
package/config.js
CHANGED
|
@@ -3,7 +3,7 @@ export var ENDPOINTS = {
|
|
|
3
3
|
PAYMENT_CARD: "https://backend.ailandsapp.com/payment-card",
|
|
4
4
|
EVENTS_PUSH: "https://backend.ailandsapp.com/event/push",
|
|
5
5
|
ATTRIBUTION_SET_ID: "https://backend.ailandsapp.com/user/set-attribution-data",
|
|
6
|
-
|
|
6
|
+
ATTRIBUTION_SET_DATA: "https://backend.ailandsapp.com/user/set-adjust-data",
|
|
7
7
|
USER_CREATE_ID: "https://backend.ailandsapp.com/user/create-id",
|
|
8
8
|
NOTIFICATION_SET_TOKEN: "https://backend.ailandsapp.com/user/notification-token",
|
|
9
9
|
CONFIG: "https://backend.ailandsapp.com/core/config",
|
package/package.json
CHANGED
package/src/libraries/AdJust.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Adjust, AdjustEvent, AdjustConfig, AdjustPlayStoreSubscription, AdjustAppStoreSubscription
|
|
1
|
+
import { Adjust, AdjustEvent, AdjustConfig, AdjustPlayStoreSubscription, AdjustAppStoreSubscription } from 'react-native-adjust';
|
|
2
2
|
import * as config from '../../config';
|
|
3
3
|
import { default as storage } from './Storage';
|
|
4
4
|
import Session from './Session';
|
|
@@ -59,7 +59,7 @@ class AdJust {
|
|
|
59
59
|
}
|
|
60
60
|
}
|
|
61
61
|
console.log('sendAttributionData', data);
|
|
62
|
-
Networking.request(config.ENDPOINTS.
|
|
62
|
+
Networking.request(config.ENDPOINTS.ATTRIBUTION_SET_DATA, data);
|
|
63
63
|
}
|
|
64
64
|
|
|
65
65
|
trackEventIfExist(eventKeyword, eventValue= 0) {
|