airbridge-react-native-sdk-restricted 4.1.2 → 4.1.4
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/.github/workflows/build.yml +4 -1
- package/.github/workflows/documentation.yml +4 -3
- package/airbridge_sdk.json +2 -2
- package/android/src/main/java/co/ab180/airbridge/reactnative/extension/JSONConvert.kt +3 -3
- package/changelog.md +14 -0
- package/package.json +1 -1
- package/qa/airbridge_qa.json +2 -2
- package/qa/android/app/src/main/AndroidManifest.xml +4 -2
- package/qa/ios/Podfile +1 -0
- package/qa/ios/Podfile.lock +24 -13
- package/qa/package-lock.json +1 -1
|
@@ -42,7 +42,10 @@ env:
|
|
|
42
42
|
BRANCH: ${{ github.event.pull_request.head.label || github.ref_name }}
|
|
43
43
|
TYPE: ${{
|
|
44
44
|
github.event_name == 'pull_request'
|
|
45
|
-
&&
|
|
45
|
+
&& (
|
|
46
|
+
startsWith(github.event.pull_request.head.label, 'release/')
|
|
47
|
+
|| startsWith(github.event.pull_request.head.label, 'hotfix/')
|
|
48
|
+
)
|
|
46
49
|
&& 'Release'
|
|
47
50
|
|| 'Feature'
|
|
48
51
|
}}
|
|
@@ -24,9 +24,10 @@ env:
|
|
|
24
24
|
|
|
25
25
|
jobs:
|
|
26
26
|
documentation:
|
|
27
|
-
if:
|
|
28
|
-
|
|
29
|
-
|
|
27
|
+
if: ${{
|
|
28
|
+
github.event.workflow_run.conclusion == 'success'
|
|
29
|
+
|| github.event.inputs.latest != null
|
|
30
|
+
}}
|
|
30
31
|
|
|
31
32
|
runs-on: ubuntu-latest
|
|
32
33
|
|
package/airbridge_sdk.json
CHANGED
|
@@ -23,9 +23,9 @@ internal fun JSONArray.toList(): List<Any> {
|
|
|
23
23
|
for (index in 0..<length()) {
|
|
24
24
|
opt(index)?.also {
|
|
25
25
|
when (it) {
|
|
26
|
-
is JSONObject -> { list
|
|
27
|
-
is JSONArray -> { list
|
|
28
|
-
else -> { list
|
|
26
|
+
is JSONObject -> { list.add(it.toMap()) }
|
|
27
|
+
is JSONArray -> { list.add(it.toList()) }
|
|
28
|
+
else -> { list.add(it) }
|
|
29
29
|
}
|
|
30
30
|
}
|
|
31
31
|
}
|
package/changelog.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## 4.1.4
|
|
2
|
+
|
|
3
|
+
**CHANGED**
|
|
4
|
+
* Update `Airbridge Android SDK` to 4.1.2
|
|
5
|
+
* Update `Airbridge iOS SDK` to 4.1.3
|
|
6
|
+
|
|
7
|
+
## 4.1.3
|
|
8
|
+
|
|
9
|
+
**FIXED**
|
|
10
|
+
* Fix occur error when calling certain methods from Meta.
|
|
11
|
+
|
|
12
|
+
**CHANGED**
|
|
13
|
+
* Update `Airbridge iOS SDK` to 4.1.2
|
|
14
|
+
|
|
1
15
|
## 4.1.2
|
|
2
16
|
|
|
3
17
|
**ADDED**
|
package/package.json
CHANGED
package/qa/airbridge_qa.json
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
1
|
+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
2
|
+
xmlns:tools="http://schemas.android.com/tools">
|
|
2
3
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
3
4
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
4
5
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
|
@@ -21,7 +22,8 @@
|
|
|
21
22
|
android:label="@string/app_name"
|
|
22
23
|
android:roundIcon="@mipmap/ic_launcher"
|
|
23
24
|
android:theme="@style/AppTheme"
|
|
24
|
-
android:supportsRtl="true"
|
|
25
|
+
android:supportsRtl="true"
|
|
26
|
+
tools:replace="android:allowBackup">
|
|
25
27
|
<activity
|
|
26
28
|
android:name=".MainActivity"
|
|
27
29
|
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize|uiMode"
|
package/qa/ios/Podfile
CHANGED
|
@@ -25,6 +25,7 @@ target 'AirbridgeQA' do
|
|
|
25
25
|
config = use_native_modules!
|
|
26
26
|
|
|
27
27
|
pod 'FirebaseCore', :modular_headers => true
|
|
28
|
+
pod 'FBSDKCoreKit'
|
|
28
29
|
pod 'GoogleUtilities', :modular_headers => true
|
|
29
30
|
if airbridge_qa['intenral_library']['ios_version'].nil?
|
|
30
31
|
pod 'airbridge-ios-sdk-qa-library', :podspec => 'Library/airbridge-ios-sdk-qa-library.podspec'
|
package/qa/ios/Podfile.lock
CHANGED
|
@@ -1,12 +1,18 @@
|
|
|
1
1
|
PODS:
|
|
2
|
-
- airbridge-ios-sdk (4.1.
|
|
3
|
-
- airbridge-ios-sdk-qa-library (4.1.
|
|
4
|
-
- airbridge-react-native-sdk (4.1.
|
|
5
|
-
- airbridge-ios-sdk (= 4.1.
|
|
2
|
+
- airbridge-ios-sdk (4.1.3)
|
|
3
|
+
- airbridge-ios-sdk-qa-library (4.1.3)
|
|
4
|
+
- airbridge-react-native-sdk (4.1.4):
|
|
5
|
+
- airbridge-ios-sdk (= 4.1.3)
|
|
6
6
|
- React
|
|
7
7
|
- boost (1.84.0)
|
|
8
8
|
- DoubleConversion (1.1.6)
|
|
9
|
+
- FBAEMKit (17.4.0):
|
|
10
|
+
- FBSDKCoreKit_Basics (= 17.4.0)
|
|
9
11
|
- FBLazyVector (0.75.1)
|
|
12
|
+
- FBSDKCoreKit (17.4.0):
|
|
13
|
+
- FBAEMKit (= 17.4.0)
|
|
14
|
+
- FBSDKCoreKit_Basics (= 17.4.0)
|
|
15
|
+
- FBSDKCoreKit_Basics (17.4.0)
|
|
10
16
|
- Firebase/CoreOnly (10.29.0):
|
|
11
17
|
- FirebaseCore (= 10.29.0)
|
|
12
18
|
- Firebase/Messaging (10.29.0):
|
|
@@ -1669,12 +1675,12 @@ PODS:
|
|
|
1669
1675
|
- Yoga (0.0.0)
|
|
1670
1676
|
|
|
1671
1677
|
DEPENDENCIES:
|
|
1672
|
-
- airbridge-ios-sdk (from `
|
|
1673
|
-
- airbridge-ios-sdk-qa-library (from `InternalLibrary/airbridge-ios-sdk-qa-library.podspec`)
|
|
1678
|
+
- airbridge-ios-sdk-qa-library (from `Library/airbridge-ios-sdk-qa-library.podspec`)
|
|
1674
1679
|
- airbridge-react-native-sdk (from `../node_modules/airbridge-react-native-sdk`)
|
|
1675
1680
|
- boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`)
|
|
1676
1681
|
- DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
|
|
1677
1682
|
- FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
|
|
1683
|
+
- FBSDKCoreKit
|
|
1678
1684
|
- FirebaseCore
|
|
1679
1685
|
- fmt (from `../node_modules/react-native/third-party-podspecs/fmt.podspec`)
|
|
1680
1686
|
- glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
|
|
@@ -1750,6 +1756,10 @@ DEPENDENCIES:
|
|
|
1750
1756
|
|
|
1751
1757
|
SPEC REPOS:
|
|
1752
1758
|
trunk:
|
|
1759
|
+
- airbridge-ios-sdk
|
|
1760
|
+
- FBAEMKit
|
|
1761
|
+
- FBSDKCoreKit
|
|
1762
|
+
- FBSDKCoreKit_Basics
|
|
1753
1763
|
- Firebase
|
|
1754
1764
|
- FirebaseCore
|
|
1755
1765
|
- FirebaseCoreExtension
|
|
@@ -1764,10 +1774,8 @@ SPEC REPOS:
|
|
|
1764
1774
|
- Toast
|
|
1765
1775
|
|
|
1766
1776
|
EXTERNAL SOURCES:
|
|
1767
|
-
airbridge-ios-sdk:
|
|
1768
|
-
:podspec: InternalLibrary/airbridge-ios-sdk.podspec
|
|
1769
1777
|
airbridge-ios-sdk-qa-library:
|
|
1770
|
-
:podspec:
|
|
1778
|
+
:podspec: Library/airbridge-ios-sdk-qa-library.podspec
|
|
1771
1779
|
airbridge-react-native-sdk:
|
|
1772
1780
|
:path: "../node_modules/airbridge-react-native-sdk"
|
|
1773
1781
|
boost:
|
|
@@ -1915,12 +1923,15 @@ EXTERNAL SOURCES:
|
|
|
1915
1923
|
:path: "../node_modules/react-native/ReactCommon/yoga"
|
|
1916
1924
|
|
|
1917
1925
|
SPEC CHECKSUMS:
|
|
1918
|
-
airbridge-ios-sdk:
|
|
1919
|
-
airbridge-ios-sdk-qa-library:
|
|
1920
|
-
airbridge-react-native-sdk:
|
|
1926
|
+
airbridge-ios-sdk: 1ada55013e9d4aceb621d1fb794d79839afee057
|
|
1927
|
+
airbridge-ios-sdk-qa-library: 79b3285875970be44c4302b9f48bf5ed62acccad
|
|
1928
|
+
airbridge-react-native-sdk: 1320523576e5ec60590c56939f5fb421d03e1100
|
|
1921
1929
|
boost: 4cb898d0bf20404aab1850c656dcea009429d6c1
|
|
1922
1930
|
DoubleConversion: 76ab83afb40bddeeee456813d9c04f67f78771b5
|
|
1931
|
+
FBAEMKit: 58cb5f302cdd715a56d4c1d0dfdd2e423ac1421a
|
|
1923
1932
|
FBLazyVector: a3071c12f1650bfa84f2815e9982426256a0aae1
|
|
1933
|
+
FBSDKCoreKit: 94d7461d0cecf441b1ba7c41acfff41daa8ccd41
|
|
1934
|
+
FBSDKCoreKit_Basics: 151b43db8b834d3f0e02f95d36a44ffd36265e45
|
|
1924
1935
|
Firebase: cec914dab6fd7b1bd8ab56ea07ce4e03dd251c2d
|
|
1925
1936
|
FirebaseCore: 30e9c1cbe3d38f5f5e75f48bfcea87d7c358ec16
|
|
1926
1937
|
FirebaseCoreExtension: 705ca5b14bf71d2564a0ddc677df1fc86ffa600f
|
|
@@ -2002,6 +2013,6 @@ SPEC CHECKSUMS:
|
|
|
2002
2013
|
Toast: 1f5ea13423a1e6674c4abdac5be53587ae481c4e
|
|
2003
2014
|
Yoga: 06fc4b2c3664ae0e278964b8fbcb0ee9d21f0a5a
|
|
2004
2015
|
|
|
2005
|
-
PODFILE CHECKSUM:
|
|
2016
|
+
PODFILE CHECKSUM: 247fa8db03e9eac8ee3efea1584d696a222f405f
|
|
2006
2017
|
|
|
2007
2018
|
COCOAPODS: 1.16.2
|