-
Notifications
You must be signed in to change notification settings - Fork 7
/
LiquidTransition.podspec
25 lines (23 loc) · 1.38 KB
/
LiquidTransition.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
Pod::Spec.new do |s|
s.name = "LiquidTransition"
s.version = "1.2.2"
s.summary = "Animated transitions make simple"
s.description = <<-DESC
LiquidTransition helps to you build transition between view controllers.
You still perform animation like before and have full manual acces for animation.
Liqud
DESC
s.homepage = "https://github.com/AlexandrGraschenkov/LiquidTransition"
# s.screenshots = "https://github.com/AlexandrGraschenkov/LiquidTransition/raw/screenshots/gif/web_browser.gif",
# "https://github.com/AlexandrGraschenkov/LiquidTransition/raw/screenshots/gif/photo_browser.gif",
# "https://github.com/AlexandrGraschenkov/LiquidTransition/raw/screenshots/gif/complex_animation.gif"
s.license = { :type => 'MIT', :file => 'LICENSE.txt' }
s.author = { "Alexander Graschenkov" => "[email protected]" }
s.platform = :ios, "8.0"
s.swift_version = '5'
s.source = { :git => "https://github.com/AlexandrGraschenkov/LiquidTransition.git", :tag => "#{s.version}" }
s.ios.frameworks = 'UIKit', 'Foundation'
s.ios.deployment_target = '12.0' # Required by Cocoapods, real version from iOS 8
s.source_files = "Liquid/**/*.{swift}"
s.resource_bundles = {"Liquid" => ["Liquid/PrivacyInfo.xcprivacy"]}
end