react-native-firework-sdk 2.6.0-beta.1 → 2.6.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.
@@ -14,7 +14,7 @@
14
14
  </data>
15
15
  <key>Info.plist</key>
16
16
  <data>
17
- 9UguudRxi0uChYVWEh93NgDkmMQ=
17
+ cHxK0wNHzV0MNPDkok4AoDVzRqA=
18
18
  </data>
19
19
  <key>Modules/FireworkVideoUI.swiftmodule/arm64-apple-ios-simulator.abi.json</key>
20
20
  <data>
@@ -5,4 +5,4 @@ FireworkSDK_kotlinVersion=1.6.10
5
5
  FireworkSDK_minSdkVersion=21
6
6
  FireworkSDK_compileSdkVersion=33
7
7
  FireworkSDK_targetSdkVersion=33
8
- FireworkSDK_fwNativeVersion=6.4.0-RC.2
8
+ FireworkSDK_fwNativeVersion=6.6.0
@@ -8,3 +8,7 @@
8
8
  # http://developer.android.com/guide/developing/tools/proguard.html
9
9
 
10
10
  # Add any project specific keep options here:
11
+
12
+ -dontwarn org.xmlpull.v1.**
13
+ -dontnote org.xmlpull.v1.**
14
+ -keep class org.xmlpull.** { *; }
@@ -19,7 +19,7 @@ class FWVideoFeed(
19
19
 
20
20
  val videoFeedView = FwVideoFeedView(context)
21
21
  var videoFeedPropsModel: FWVideoFeedPropsModel = FWVideoFeedPropsModel()
22
- private var isInited = false
22
+ private var isInit = false
23
23
 
24
24
  init {
25
25
  FWLanguageUtil.getInstance(context).updateBaseContextLocale(context)
@@ -34,12 +34,12 @@ class FWVideoFeed(
34
34
  }
35
35
 
36
36
  fun initVideoFeedView() {
37
- if (isInited) {
37
+ if (isInit) {
38
38
  return
39
39
  }
40
40
  val viewOptionsBuilder = FWConfigUtil.generateViewOptionsBuilder(context, videoFeedPropsModel)
41
41
  videoFeedView.init(viewOptionsBuilder.build())
42
- isInited = true
42
+ isInit = true
43
43
  }
44
44
 
45
45
  fun refresh() {
@@ -69,7 +69,7 @@ public class AppLanguageManager {
69
69
  return .unsupported
70
70
  }
71
71
  }
72
-
72
+
73
73
  var systemLanguageLayoutDirection: LanguageLayoutDirection? {
74
74
  guard let languageCode = systemLanguageCode else {
75
75
  return nil
@@ -90,7 +90,7 @@ public class AppLanguageManager {
90
90
  systemLanguageLayoutDirection == .ltr {
91
91
  return true
92
92
  }
93
-
93
+
94
94
  if appLanguageLayoutDirection == .ltr,
95
95
  systemLanguageLayoutDirection == .rtl {
96
96
  return true
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-firework-sdk",
3
- "version": "2.6.0-beta.1",
3
+ "version": "2.6.0",
4
4
  "description": "Firework React Native SDK",
5
5
  "main": "lib/commonjs/index",
6
6
  "module": "lib/module/index",