@byteplus/react-native-live-push 1.3.0-rc.3 → 1.3.0-rc.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@byteplus/react-native-live-push",
3
- "version": "1.3.0-rc.3",
3
+ "version": "1.3.0-rc.5",
4
4
  "peerDependencies": {
5
5
  "react": "*",
6
6
  "react-native": "*"
@@ -49,7 +49,13 @@ Pod::Spec.new do |s|
49
49
  end
50
50
  end
51
51
 
52
- s.dependency 'VolcApiEngine', '1.6.4'
53
- s.dependency 'TTSDKFramework/Core', '1.46.300.5-premium'
54
- s.dependency 'TTSDKFramework/LivePush-RTS', '1.46.300.5-premium'
52
+ # Version configuration through environment variables
53
+ volc_api_engine_version = ENV['VOLC_API_ENGINE_VERSION'] || '1.6.4'
54
+ ttsdk_framework_version = ENV['TTSDK_FRAMEWORK_VERSION'] || '1.46.300.5-premium'
55
+
56
+ s.dependency 'VolcApiEngine', volc_api_engine_version
57
+ s.dependency 'TTSDKFramework/Core', ttsdk_framework_version
58
+ s.dependency 'TTSDKFramework/LivePush-RTS', ttsdk_framework_version
59
+
60
+ puts("[LIVE PUSH POD INSTALL INFO]: volc_api_engine_version: #{volc_api_engine_version} / ttsdk_framework_version: #{ttsdk_framework_version}")
55
61
  end