-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathZappPluginPlayerExample-iOS.podspec
More file actions
37 lines (30 loc) · 1.5 KB
/
ZappPluginPlayerExample-iOS.podspec
File metadata and controls
37 lines (30 loc) · 1.5 KB
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
Pod::Spec.new do |s|
s.name = "ZappPluginPlayerExample-iOS"
s.version = '1.0.0'
s.summary = "An EXample of video player framework for Zapp iOS."
s.description = <<-DESC
An EXample of video player framework for Zapp iOS.
DESC
s.homepage = "https://github.com/applicaster/ZappPluginPlayerExample-iOS"
s.license = 'MIT'
s.author = { "Udi Lumnitz" => "u.lumnitz@applicaster.com" }
s.source = { :git => "git@github.com:applicaster/ZappPluginPlayerExample-iOS.git", :tag => s.version.to_s }
s.platform = :ios, '10.0'
s.requires_arc = true
s.public_header_files = 'ZappPluginPlayerExample-iOS/**/*.h'
s.source_files = 'ZappPluginPlayerExample-iOS/**/*.{h,m,swift}'
s.resources = [
"ZappPluginPlayerExample-iOS/**/*.xcassets",
"ZappPluginPlayerExample-iOS/**/*.storyboard",
"ZappPluginPlayerExample-iOS/**/*.xib",
"ZappPluginPlayerExample-iOS/**/*.png"]
s.xcconfig = { 'CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES' => 'YES',
'ENABLE_BITCODE' => 'YES',
'OTHER_LDFLAGS' => '$(inherited)',
'FRAMEWORK_SEARCH_PATHS' => '$(inherited) "${PODS_ROOT}"/**',
'LIBRARY_SEARCH_PATHS' => '$(inherited) "${PODS_ROOT}"/**',
'SWIFT_VERSION' => '5.1'
}
s.dependency 'ZappPlugins'
s.dependency 'ApplicasterSDK'
end