apps-sdk 1.0.145 → 1.0.147

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/app.json ADDED
@@ -0,0 +1,6 @@
1
+ {
2
+ "plugins": [
3
+ "expo-localization",
4
+ "expo-tracking-transparency"
5
+ ]
6
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apps-sdk",
3
- "version": "1.0.145",
3
+ "version": "1.0.147",
4
4
  "description": "Apps SDK",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -9,30 +9,31 @@
9
9
  "author": "ASD",
10
10
  "license": "ISC",
11
11
  "dependencies": {
12
- "@expo/config-plugins": "~7.8.0",
13
- "@react-native-async-storage/async-storage": "^1.21.0",
14
- "@react-native-community/netinfo": "11.1.0",
12
+ "@expo/config-plugins": "~9.0.0",
13
+ "@react-native-async-storage/async-storage": "1.23.1",
14
+ "@react-native-community/netinfo": "11.4.1",
15
15
  "@react-native-voice/voice": "^3.2.4",
16
16
  "apps-sdk": "^1.0.120",
17
17
  "crypto-es": "^2.1.0",
18
- "expo-constants": "~15.4.6",
19
- "expo-device": "~5.9.4",
20
- "expo-file-system": "~16.0.9",
18
+ "expo": "^52.0.28",
19
+ "expo-constants": "~17.0.5",
20
+ "expo-device": "~7.0.2",
21
+ "expo-file-system": "~18.0.7",
21
22
  "expo-image-manipulator": "^13.0.6",
22
- "expo-image-picker": "^16.0.3",
23
- "expo-linking": "^6.2.2",
24
- "expo-localization": "~14.8.4",
25
- "expo-media-library": "~15.9.2",
26
- "expo-notifications": "~0.27.8",
27
- "expo-sharing": "^11.10.0",
28
- "expo-speech": "^13.0.0",
29
- "expo-store-review": "~6.8.3",
30
- "expo-tracking-transparency": "~3.3.0",
31
- "react-native": "0.73.6",
23
+ "expo-image-picker": "~16.0.4",
24
+ "expo-linking": "~7.0.5",
25
+ "expo-localization": "~16.0.1",
26
+ "expo-media-library": "~17.0.5",
27
+ "expo-notifications": "~0.29.13",
28
+ "expo-sharing": "~13.0.1",
29
+ "expo-speech": "~13.0.1",
30
+ "expo-store-review": "~8.0.1",
31
+ "expo-tracking-transparency": "~5.1.1",
32
+ "react-native": "0.76.6",
32
33
  "react-native-adjust": "^5.0.2",
33
34
  "react-native-btr": "^2.2.1",
34
35
  "react-native-iap": "^12.13.0",
35
- "react-native-webview": "13.6.4",
36
+ "react-native-webview": "13.12.5",
36
37
  "semver": "^7.6.0"
37
38
  },
38
39
  "types": "./types/index.d.ts"
@@ -244,7 +244,6 @@ const styles = {
244
244
  backgroundColor: '#000',
245
245
  width: '100%',
246
246
  height: '100%',
247
- paddingTop: 35,
248
247
  },
249
248
  }
250
249
 
@@ -13,6 +13,7 @@ class AdJust {
13
13
  const adjustLogLevel = config.ADJUST.LOG_LEVEL === 'VERBOSE' ? AdjustConfig.LogLevelVerbose : AdjustConfig.LogLevelSuppress;
14
14
  console.log("Initializing AdJust. Environment: " + adjustEnvironment + ", Log level: " + adjustLogLevel + ", config.TRACKING_ACTIVE: " + config.TRACKING_ACTIVE);
15
15
  try {
16
+ config.DEBUG_MODE && console.log('Initializing AdJust with token: ' + adjustToken || config.ADJUST.ADJUST_TOKEN);
16
17
  const adjustConfig = new AdjustConfig(adjustToken || config.ADJUST.ADJUST_TOKEN, adjustEnvironment);
17
18
  adjustConfig.setLogLevel(adjustLogLevel);
18
19
  const self = this;