Skip to content

Commit

Permalink
fix: The issue of call API with an invalid data type may cause crash (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
guoxianzhe authored Jan 3, 2025
1 parent d1c3ba3 commit e94f4f2
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
build-android:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
env:
TURBO_CACHE_DIR: .turbo/android
turbo_cache_hit: 0
Expand Down Expand Up @@ -158,15 +158,15 @@ jobs:
- name: Upload IPA
uses: actions/upload-artifact@v3
with:
name: AgoraRtcNgExample
name: AgoraRtcNgExample-${{ github.run_id }}
path: |
example/ios/*.ipa
if-no-files-found: error

- name: Upload dSYM
uses: actions/upload-artifact@v3
with:
name: AgoraRtcNgExampleSymbol
name: AgoraRtcNgExampleSymbol-${{ github.run_id }}
path: |
example/ios/*.dSYM.zip
if-no-files-found: error
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
strategy:
matrix:
newArch: [true, false]
runs-on: macos-13
runs-on: ubuntu-22.04
env:
TURBO_CACHE_DIR: .turbo/android
ORG_GRADLE_PROJECT_newArchEnabled: ${{ matrix.newArch }}
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ dependencies {
implementation fileTree(include: ['*.jar', '*.aar'], dir: 'libs')
api 'io.agora.rtc:agora-special-full:4.5.0.1'
implementation 'io.agora.rtc:full-screen-sharing:4.5.0.1'
implementation 'io.agora.rtc:iris-rtc:4.5.0-build.1'
implementation 'io.agora.rtc:iris-rtc:4.5.0-build.2'
}

if (isNewArchitectureEnabled()) {
Expand Down
10 changes: 5 additions & 5 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PODS:
- AgoraInfra_iOS (1.2.13)
- AgoraIrisRTC_iOS (4.5.0-build.1)
- AgoraIrisRTC_iOS (4.5.0-build.2)
- AgoraRtcEngine_iOS (4.5.0):
- AgoraRtcEngine_iOS/AIAEC (= 4.5.0)
- AgoraRtcEngine_iOS/AIAECLL (= 4.5.0)
Expand Down Expand Up @@ -417,8 +417,8 @@ PODS:
- React-jsinspector (0.72.12)
- React-logger (0.72.12):
- glog
- react-native-agora (4.4.0):
- AgoraIrisRTC_iOS (= 4.5.0-build.1)
- react-native-agora (4.5.0):
- AgoraIrisRTC_iOS (= 4.5.0-build.2)
- AgoraRtcEngine_iOS (= 4.5.0)
- RCT-Folly (= 2021.07.22.00)
- React-Core
Expand Down Expand Up @@ -754,7 +754,7 @@ EXTERNAL SOURCES:

SPEC CHECKSUMS:
AgoraInfra_iOS: 65e11a2183ab7836258768868d06058c22701b13
AgoraIrisRTC_iOS: 8207edf56ceaae6b8ee773d8e2137c6b7cb062be
AgoraIrisRTC_iOS: 67278818a420cf54184a197f7b47afb23704d7e2
AgoraRtcEngine_iOS: 38b5e0a49bbad5616f284e6a4f9e4f5bb3fb3b2e
boost: 7dcd2de282d72e344012f7d6564d024930a6a440
CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99
Expand Down Expand Up @@ -789,7 +789,7 @@ SPEC CHECKSUMS:
React-jsiexecutor: 95bdf0ab46024ca9849e08739b6abd8fe489cd33
React-jsinspector: 8e291ed0ab371314de269001d6b9b25db6aabf42
React-logger: d4010de0b0564e63637ad08373bc73b5d919974b
react-native-agora: e851f18fa99b8ff8cb38bd2f2b7d17f06fd1a470
react-native-agora: 4874a8adf0ca14572feb7fafdc9f4bc69270be83
react-native-image-tools: 88218449791389bbf550a2c475a3b564c8233c8b
react-native-safe-area-context: 7aa8e6d9d0f3100a820efb1a98af68aa747f9284
react-native-slider: 1cdd6ba29675df21f30544253bf7351d3c2d68c4
Expand Down
2 changes: 1 addition & 1 deletion react-native-agora.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Pod::Spec.new do |s|
end

s.dependency 'AgoraRtcEngine_iOS', '4.5.0'
s.dependency 'AgoraIrisRTC_iOS', '4.5.0-build.1'
s.dependency 'AgoraIrisRTC_iOS', '4.5.0-build.2'
s.libraries = 'stdc++'
s.framework = 'ReplayKit'
end

0 comments on commit e94f4f2

Please sign in to comment.