UNPKG

1.37 kBPlain TextView Raw
1#
2# This podspec is used for local developing of Lottie only. It is not to be published.
3
4Pod::Spec.new do |s|
5 s.name = 'lottie-swift-testing'
6 s.version = '0.1.0'
7 s.summary = 'Podspec used for testing new versions of lottie against the current published base.'
8
9 s.description = 'Podspec used for testing new versions of lottie against the current published base.'
10
11 s.homepage = 'https://github.com/buba447/lottie-swift'
12 s.license = { :type => 'Apache', :file => 'LICENSE' }
13 s.author = { 'Brandon Withrow' => 'buba447@gmail.com' }
14 s.source = { :git => 'https://github.com/airbnb/lottie-ios.git', :branch => 'master' }
15
16 s.swift_version = '5.0'
17 s.ios.deployment_target = '9.0'
18 s.osx.deployment_target = '10.10'
19 s.tvos.deployment_target = '9.0'
20
21 s.source_files = 'lottie-swift/src/**/*'
22 s.ios.source_files = 'lottie-swift/iOS/*.swift'
23 s.ios.exclude_files = 'lottie-swift/src/Public/MacOS/**/*'
24 s.tvos.exclude_files = 'lottie-swift/src/Public/MacOS/**/*'
25 s.osx.exclude_files = 'lottie-swift/src/Public/iOS/**/*'
26
27 s.ios.frameworks = ['UIKit', 'CoreGraphics', 'QuartzCore']
28 s.tvos.frameworks = ['UIKit', 'CoreGraphics', 'QuartzCore']
29 s.osx.frameworks = ['AppKit', 'CoreGraphics', 'QuartzCore']
30 s.module_name = 'LottieNew'
31 s.header_dir = 'LottieNew'
32end