-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgoogle-cast-sdk-no-bluetooth-dynamic-ios.podspec
40 lines (34 loc) · 2.51 KB
/
google-cast-sdk-no-bluetooth-dynamic-ios.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
Pod::Spec.new do |spec|
spec.name = "google-cast-sdk-no-bluetooth-dynamic-ios"
spec.version = "4.4.7"
spec.summary = "Framework for casting content to Google Cast devices with no Bluetooth requirements (dynamically linked version)"
spec.description = <<-DESC
Google Cast is a screen-sharing technology that lets a user send and
control content like video from a small computing device like a phone,
tablet, or laptop to a large display device like a television.
A sender application running on the sender device uses the Google Cast
API appropriate to its operating system to discover and transmit to the
receiver application running on the receiver device. You can use the
sender APIs to enable your iOS app to send content to a large display.
Your use of Google Cast SDK is subject to, and by using or downloading any of
the related files you agree to comply with, the Google APIs Terms of Service (https://developers.google.com/terms/)
and the Google Cast SDK Additional Developer Terms of Service (https://developers.google.com/cast/docs/terms/).
Starting with 4.3.1, the google-cast-sdk pod is a (600+MB) statically-linked framework,
while google-cast-sdk-dynamic is the 50+MB dynamically-linked version of the same.
DESC
spec.homepage = "https://developers.google.com/cast/"
spec.license = { :type => "Commercial", :text => "https://developers.google.com/terms/" }
spec.authors = "Google Inc."
spec.source = { :http => "https://dl.google.com/dl/chromecast/sdk/ios/GoogleCastSDK-ios-no-bluetooth-4.4.7_dynamic.zip" }
spec.ios.deployment_target = "9.0"
spec.preserve_paths = "GoogleCastSDK-ios-4.4.7_dynamic/GoogleCast.framework"
spec.module_map = "GoogleCastSDK-ios-4.4.7_dynamic/GoogleCast.framework/Modules/module.modulemap"
spec.resources = "GoogleCastSDK-ios-4.4.7_dynamic/GoogleCast.framework/GoogleCastCoreResources.bundle",
"GoogleCastSDK-ios-4.4.7_dynamic/GoogleCast.framework/GoogleCastUIResources.bundle"
spec.vendored_frameworks = "GoogleCastSDK-ios-4.4.7_dynamic/GoogleCast.framework"
spec.frameworks = "Accelerate", "AudioToolbox", "AVFoundation", "CFNetwork", "CoreData", "CoreGraphics", "CoreMedia", "CoreText", "Foundation", "MediaAccessibility", "MediaPlayer", "QuartzCore", "Security", "SystemConfiguration", "UIKit"
spec.libraries = "c++"
spec.dependency "Protobuf", "~> 3.0"
spec.source_files = "GoogleCastSDK-ios-4.4.7_dynamic/GoogleCast.framework/Headers/*.h"
spec.requires_arc = true
end