tirtc-react-native 2.3.0 → 2.3.1

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/README.md CHANGED
@@ -6,9 +6,9 @@
6
6
  npm install tirtc-react-native
7
7
  ```
8
8
 
9
- The package ships ESM JavaScript, TypeScript declarations, Codegen specs, Android native wrapper code and iOS native wrapper code. It requires React Native `>=0.80.0`, Android `com.tange.ai:tirtc:2.3.0`, and iOS `TiRTC` `2.3.0` with iOS minimum `15.1`.
9
+ The package ships ESM JavaScript, TypeScript declarations, Codegen specs, Android native wrapper code and iOS native wrapper code. It requires React Native `>=0.80.0`, Android `com.tange.ai:tirtc:2.3.1`, and iOS `TiRTC` `2.3.1` with iOS minimum `15.1`.
10
10
 
11
- Version `2.3.0` is a stable React Native release aligned with the TiRTC 2.3.0 Android and Darwin SDKs.
11
+ Version `2.3.1` is a stable React Native release aligned with the TiRTC 2.3.1 Android and Darwin SDKs.
12
12
 
13
13
  ## Imports
14
14
 
@@ -123,7 +123,7 @@ Constructors create native owner identities, so outputs and inputs can attach to
123
123
 
124
124
  ## Release
125
125
 
126
- Version `2.3.0` is the current React Native package for TiRTC client media output and talkback. It supports React Native New Architecture apps on Android and iOS and pins Android `com.tange.ai:tirtc:2.3.0` and iOS `TiRTC` `2.3.0`.
126
+ Version `2.3.1` is the current React Native package for TiRTC client media output and talkback. It supports React Native New Architecture apps on Android and iOS and pins Android `com.tange.ai:tirtc:2.3.1` and iOS `TiRTC` `2.3.1`.
127
127
 
128
128
  ## License
129
129
 
@@ -143,7 +143,7 @@ The external application sample is published under `react-native/` in
143
143
  `tirtc-api-samples`. The owner-local projection and recovery entry is:
144
144
 
145
145
  ```sh
146
- ./scripts/publish_api_samples.sh --version 2.3.0
146
+ ./scripts/publish_api_samples.sh --version 2.3.1
147
147
  ```
148
148
 
149
149
  Use `--no-push` for a complete local projection/build rehearsal without writing
@@ -13,7 +13,7 @@ Pod::Spec.new do |s|
13
13
  s.source = { :git => 'https://gitlab.tange-ai.com/tirtc-nexus/tirtc.git', :tag => s.version.to_s }
14
14
  s.source_files = 'ios/**/*.{h,m,mm,swift}'
15
15
  s.dependency 'React-Core'
16
- s.dependency 'TiRTC', '2.3.0'
16
+ s.dependency 'TiRTC', '2.3.1'
17
17
 
18
18
  if respond_to?(:install_modules_dependencies, true)
19
19
  install_modules_dependencies(s)
@@ -29,7 +29,7 @@ repositories {
29
29
 
30
30
  dependencies {
31
31
  implementation "com.facebook.react:react-android"
32
- implementation "com.tange.ai:tirtc:${safeExtGet("tirtcAndroidVersion", "2.3.0")}"
32
+ implementation "com.tange.ai:tirtc:${safeExtGet("tirtcAndroidVersion", "2.3.1")}"
33
33
  }
34
34
 
35
35
  def safeExtGet(prop, fallback) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tirtc-react-native",
3
- "version": "2.3.0",
3
+ "version": "2.3.1",
4
4
  "description": "TiRTC React Native SDK",
5
5
  "homepage": "https://tange.ai/",
6
6
  "repository": {