forked from airbnb/lottie-ios
-
Notifications
You must be signed in to change notification settings - Fork 1
/
lottie-swift-testing.podspec
32 lines (26 loc) · 1.35 KB
/
lottie-swift-testing.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
#
# This podspec is used for local developing of Lottie only. It is not to be published.
Pod::Spec.new do |s|
s.name = 'lottie-swift-testing'
s.version = '0.1.0'
s.summary = 'Podspec used for testing new versions of lottie against the current published base.'
s.description = 'Podspec used for testing new versions of lottie against the current published base.'
s.homepage = 'https://github.com/buba447/lottie-swift'
s.license = { :type => 'Apache', :file => 'LICENSE' }
s.author = { 'Brandon Withrow' => '[email protected]' }
s.source = { :git => 'https://github.com/buba447/lottie-swift.git', :tag => s.version.to_s }
s.swift_version = '4.2'
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.10'
s.tvos.deployment_target = '9.0'
s.source_files = 'lottie-swift/src/**/*'
s.ios.source_files = 'lottie-swift/iOS/*.swift'
s.ios.exclude_files = 'lottie-swift/src/Public/MacOS/**/*'
s.tvos.exclude_files = 'lottie-swift/src/Public/MacOS/**/*'
s.osx.exclude_files = 'lottie-swift/src/Public/iOS/**/*'
s.ios.frameworks = ['UIKit', 'CoreGraphics', 'QuartzCore']
s.tvos.frameworks = ['UIKit', 'CoreGraphics', 'QuartzCore']
s.osx.frameworks = ['AppKit', 'CoreGraphics', 'QuartzCore']
s.module_name = 'LottieNew'
s.header_dir = 'LottieNew'
end