tirtc-react-native 2.5.0 → 2.5.3
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 +4 -4
- package/TiRtcReactNative.podspec +1 -1
- package/android/build.gradle +1 -1
- package/lib/module/build_identity.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -6,11 +6,11 @@
|
|
|
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. RTC and CloudStorage use the same native Runtime delivery but keep separate initialization and resource lifecycles. The package requires React Native `>=0.80.0`, Android `com.tange.ai:tirtc:2.5.
|
|
9
|
+
The package ships ESM JavaScript, TypeScript declarations, Codegen specs, Android native wrapper code and iOS native wrapper code. RTC and CloudStorage use the same native Runtime delivery but keep separate initialization and resource lifecycles. The package requires React Native `>=0.80.0`, Android `com.tange.ai:tirtc:2.5.3`, and iOS `TiRTC` `2.5.3` with iOS minimum `15.1`.
|
|
10
10
|
|
|
11
11
|
The iOS package supports arm64 devices and Apple Silicon iOS Simulator. Simulator validation covers build, launch, connection, downlink audio, and downlink video; capture and iOS behavioral qualification remain real-device gates.
|
|
12
12
|
|
|
13
|
-
Version `2.5.
|
|
13
|
+
Version `2.5.3` uses TiRTC 2.5.3 on Android and iOS. The React Native public API is unchanged from 2.5.2.
|
|
14
14
|
|
|
15
15
|
## Imports
|
|
16
16
|
|
|
@@ -139,7 +139,7 @@ Constructors create native owner identities, so outputs and inputs can attach to
|
|
|
139
139
|
|
|
140
140
|
## Release
|
|
141
141
|
|
|
142
|
-
Version `2.5.
|
|
142
|
+
Version `2.5.3` is the current stable React Native release for TiRTC and Ti Cloud Storage. It supports React Native New Architecture apps on Android and iOS and pins Android `com.tange.ai:tirtc:2.5.3` and iOS `TiRTC` `2.5.3`.
|
|
143
143
|
|
|
144
144
|
## License
|
|
145
145
|
|
|
@@ -161,7 +161,7 @@ The external application sample is published under `react-native/` in
|
|
|
161
161
|
`tirtc-api-samples`. The owner-local projection and recovery entry is:
|
|
162
162
|
|
|
163
163
|
```sh
|
|
164
|
-
./scripts/publish_api_samples.sh --version 2.5.
|
|
164
|
+
./scripts/publish_api_samples.sh --version 2.5.3
|
|
165
165
|
```
|
|
166
166
|
|
|
167
167
|
Use `--no-push` for a complete local projection/build rehearsal without writing
|
package/TiRtcReactNative.podspec
CHANGED
|
@@ -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.5.
|
|
16
|
+
s.dependency 'TiRTC', '2.5.3'
|
|
17
17
|
|
|
18
18
|
if respond_to?(:install_modules_dependencies, true)
|
|
19
19
|
install_modules_dependencies(s)
|
package/android/build.gradle
CHANGED
|
@@ -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.5.
|
|
32
|
+
implementation "com.tange.ai:tirtc:${safeExtGet("tirtcAndroidVersion", "2.5.3")}"
|
|
33
33
|
}
|
|
34
34
|
|
|
35
35
|
def safeExtGet(prop, fallback) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const buildIdentity = {"releaseVersion":"2.5.
|
|
1
|
+
export const buildIdentity = {"releaseVersion":"2.5.3","buildTimeUtc":"2026-09-25T11:56:08Z","sourceRevision":"f5b8f2fe3eb0a3381773af4173dda5b795a213ca","sourceDirty":0};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tirtc-react-native",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.3",
|
|
4
4
|
"description": "TiRTC React Native SDK",
|
|
5
5
|
"homepage": "https://tange.ai/",
|
|
6
6
|
"repository": {
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"build": "node scripts/clean_generated_lib.mjs && tsc -p tsconfig.build.json && node scripts/freeze_build_identity.mjs && node scripts/write_codegen_component_specs.mjs",
|
|
50
50
|
"lint": "node test/source_guard.mjs",
|
|
51
51
|
"preflight:npm": "node scripts/npm_preflight.mjs",
|
|
52
|
-
"test": "node test/parity_guard.mjs && node test/package_artifact_guard.mjs && node test/lifecycle_contract_guard.mjs && node test/lifecycle_behavior_guard.mjs && node test/integration_contract_guard.mjs && node test/runner_schema_guard.mjs && node --test test/source_fingerprint.test.mjs",
|
|
52
|
+
"test": "node test/parity_guard.mjs && node test/package_artifact_guard.mjs && node test/lifecycle_contract_guard.mjs && node test/lifecycle_behavior_guard.mjs && node test/integration_contract_guard.mjs && node test/runner_schema_guard.mjs && node --test test/source_fingerprint.test.mjs && python3 -m unittest example/tool/support/runner_contract_test.py",
|
|
53
53
|
"test:contract-red": "node test/contract_red_summary.mjs",
|
|
54
54
|
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
55
55
|
"codegen:check": "node test/codegen_contract_guard.mjs"
|