Skip to content

Commit

Permalink
Release 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jonghenhan committed Aug 8, 2022
1 parent 0949288 commit 0300803
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions ConnectSDK-Lite.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

Pod::Spec.new do |s|
s.name = "ConnectSDK-Lite"
s.version = "1.6.2"
s.version = "2.0.0"
s.summary = "Connect SDK is an open source framework that connects your mobile apps with multiple TV platforms."

s.description = <<-DESC
Expand All @@ -25,12 +25,12 @@ Pod::Spec.new do |s|
To support the aforementioned use case without Connect SDK, a developer would need to implement DIAL, ECG, Chromecast, and DLNA in their app. With Connect SDK, discovering the three devices is handled for you. Furthermore, the method calls between each protocol is abstracted. That means you can use one method call to beam a video to Roku, 3 generations of LG Smart TVs, Apple TV, and Chromecast.
DESC

s.homepage = "http://www.connectsdk.com/"
s.homepage = "https://connectsdk.com/"
s.license = { :type => "Apache License, Version 2.0", :file => "LICENSE" }
s.author = { "Connect SDK" => "[email protected]" }
s.social_media_url = "http://twitter.com/ConnectSDK"
s.platform = :ios, "7.1"
s.ios.deployment_target = "7.1"
s.platform = :ios, "12.0"
s.ios.deployment_target = "12.0"
s.source = { :git => "https://github.com/ConnectSDK/Connect-SDK-iOS-Lite.git",
:tag => s.version,
:submodules => true }
Expand Down Expand Up @@ -88,7 +88,7 @@ Pod::Spec.new do |s|
"core/Frameworks/asi-http-request/Classes/*.{h,m}"

s.subspec 'Core' do |sp|
sp.source_files = "ConnectSDKDefaultPlatforms.h", "core/**/*.{h,m}"
sp.source_files = "ConnectSDKDefaultPlatforms.h", "core/**/*.{h,m,swift}"
sp.exclude_files = (non_arc_files.dup << "core/ConnectSDK*Tests/**/*")
sp.private_header_files = "core/**/*_Private.h"
sp.requires_arc = true
Expand Down
2 changes: 1 addition & 1 deletion core
Submodule core updated 47 files
+4 −0 Devices/ConnectableDevice.h
+58 −0 Devices/ConnectableDevice.m
+ Frameworks/LGCast/GStreamerForLGCast.framework/GStreamerForLGCast
+31 −0 Frameworks/LGCast/GStreamerForLGCast.framework/Headers/GStreamerForLGCast.h
+52 −0 Frameworks/LGCast/GStreamerForLGCast.framework/Headers/LCStreamer.h
+26 −0 Frameworks/LGCast/GStreamerForLGCast.framework/Headers/LCStreamerData.h
+ Frameworks/LGCast/GStreamerForLGCast.framework/Info.plist
+6 −0 Frameworks/LGCast/GStreamerForLGCast.framework/Modules/module.modulemap
+ Frameworks/LGCast/GStreamerForLGCast.zip
+651 −0 Frameworks/LGCast/LGCast.framework/Headers/LGCast-Swift.h
+19 −0 Frameworks/LGCast/LGCast.framework/Headers/LGCast.h
+ Frameworks/LGCast/LGCast.framework/Info.plist
+ Frameworks/LGCast/LGCast.framework/LGCast
+ Frameworks/LGCast/LGCast.framework/Modules/LGCast.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
+ Frameworks/LGCast/LGCast.framework/Modules/LGCast.swiftmodule/arm64-apple-ios.swiftdoc
+562 −0 Frameworks/LGCast/LGCast.framework/Modules/LGCast.swiftmodule/arm64-apple-ios.swiftinterface
+ Frameworks/LGCast/LGCast.framework/Modules/LGCast.swiftmodule/arm64-apple-ios.swiftmodule
+ Frameworks/LGCast/LGCast.framework/Modules/LGCast.swiftmodule/x86_64-apple-ios-simulator.swiftdoc
+562 −0 Frameworks/LGCast/LGCast.framework/Modules/LGCast.swiftmodule/x86_64-apple-ios-simulator.swiftinterface
+ Frameworks/LGCast/LGCast.framework/Modules/LGCast.swiftmodule/x86_64-apple-ios-simulator.swiftmodule
+11 −0 Frameworks/LGCast/LGCast.framework/Modules/module.modulemap
+9 −4 README.md
+84 −0 Services/Capabilities/RemoteCameraControl.h
+63 −0 Services/Capabilities/ScreenMirroringControl.h
+78 −0 Services/Helpers/LGCast/ConnectionManager.h
+436 −0 Services/Helpers/LGCast/ConnectionManager.m
+38 −0 Services/Helpers/LGCast/Device/MobileCapability.h
+50 −0 Services/Helpers/LGCast/Device/MobileCapability.m
+48 −0 Services/Helpers/LGCast/RemoteCameraService/CameraParameter.h
+122 −0 Services/Helpers/LGCast/RemoteCameraService/CameraParameter.m
+40 −0 Services/Helpers/LGCast/RemoteCameraService/CameraSinkCapability.h
+52 −0 Services/Helpers/LGCast/RemoteCameraService/CameraSinkCapability.m
+35 −0 Services/Helpers/LGCast/RemoteCameraService/CameraSourceCapability.h
+64 −0 Services/Helpers/LGCast/RemoteCameraService/CameraSourceCapability.m
+70 −0 Services/Helpers/LGCast/RemoteCameraService/RemoteCameraService.h
+425 −0 Services/Helpers/LGCast/RemoteCameraService/RemoteCameraService.m
+37 −0 Services/Helpers/LGCast/ScreenMirroringService/MirroringSinkCapability.h
+119 −0 Services/Helpers/LGCast/ScreenMirroringService/MirroringSinkCapability.m
+50 −0 Services/Helpers/LGCast/ScreenMirroringService/MirroringSourceCapability.h
+83 −0 Services/Helpers/LGCast/ScreenMirroringService/MirroringSourceCapability.m
+55 −0 Services/Helpers/LGCast/ScreenMirroringService/ScreenMirroringService.h
+337 −0 Services/Helpers/LGCast/ScreenMirroringService/ScreenMirroringService.m
+40 −0 Services/Helpers/LGCast/WebOSTVService+LGCast.h
+128 −0 Services/Helpers/LGCast/WebOSTVService+LGCast.m
+1 −1 Services/Helpers/WebOSTVServiceSocketClient.m
+3 −1 Services/WebOSTVService.h
+167 −1 Services/WebOSTVService.m

0 comments on commit 0300803

Please sign in to comment.