@appboxo/react-native-sdk 1.9.0 → 1.10.0

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.
@@ -123,7 +123,7 @@ dependencies {
123
123
  implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
124
124
  //noinspection GradleDynamicVersion
125
125
  implementation 'com.facebook.react:react-native:+' // From node_modules
126
- implementation('io.boxo.sdk:boxo-android:1.33.1') {
126
+ implementation('io.boxo.sdk:boxo-android:1.35.0') {
127
127
  exclude group: 'com.google.android.gms', module: 'play-services-location'
128
128
  }
129
129
  }
@@ -12,7 +12,7 @@ const mOpenMiniapp = (miniAppId, options) => {
12
12
  options?.urlSuffix,
13
13
  options?.colors,
14
14
  options?.enableSplash ?? true,
15
- options?.saveState ?? true,
15
+ options?.saveState ?? false,
16
16
  options?.pageAnimation === 'BOTTOM_TO_TOP' ||
17
17
  options?.pageAnimation === 'TOP_TO_BOTTOM' ||
18
18
  options?.pageAnimation === 'LEFT_TO_RIGHT' ||
package/js/mSetConfig.js CHANGED
@@ -9,7 +9,7 @@ const mSetConfig = (clientId, options) => {
9
9
  options?.userId ?? '',
10
10
  options?.language ?? 'en',
11
11
  options?.sandboxMode ?? false,
12
- options?.enableMultitaskMode ?? false,
12
+ options?.enableMultitaskMode ?? true,
13
13
  options?.theme === 'dark' || options?.theme === 'light' ? options?.theme : 'system',
14
14
  options?.isDebug ?? false,
15
15
  options?.showPermissionsPage ?? true,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@appboxo/react-native-sdk",
3
3
  "title": "BoxoSDK for React Native",
4
- "version": "1.9.0",
4
+ "version": "1.10.0",
5
5
  "description": "BoxoSDK plugin for react native",
6
6
  "main": "index.js",
7
7
  "files": [
@@ -22,7 +22,7 @@ Pod::Spec.new do |s|
22
22
  s.requires_arc = true
23
23
 
24
24
  s.dependency "React"
25
- s.dependency 'BoxoSDK', '1.19.0'
25
+ s.dependency 'BoxoSDK', '1.21.0'
26
26
  # ...
27
27
  # s.dependency "..."
28
28
  end