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