-
-
Notifications
You must be signed in to change notification settings - Fork 102
/
Copy pathTTGSnackbar.podspec
27 lines (23 loc) · 1.28 KB
/
TTGSnackbar.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
Pod::Spec.new do |s|
s.name = "TTGSnackbar"
s.module_name = "TTGSnackbar"
s.version = "1.12.0"
s.summary = "A Swift based implementation of the Android Snackbar for iOS. Show simple message and action button or custom view like a Toast."
s.description = <<-DESC
TTGSnackbar is useful for showing a brief message at the bottom of the screen with an action button.
It also supports showing icon image, two action buttons or custom content view.
It appears above all other elements on screen and only one can be displayed at a time.
It disappears after a timeout or after user click the action button.
DESC
s.homepage = "https://github.com/zekunyan/TTGSnackbar"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "zekunyan" => "zekunyan@163.com" }
s.social_media_url = "http://tutuge.me"
s.platform = :ios, "9.0"
s.ios.deployment_target = '9.0'
s.source = { :git => "https://github.com/zekunyan/TTGSnackbar.git", :tag => s.version.to_s }
s.source_files = "TTGSnackbar/**/*.{h,swift}"
s.requires_arc = true
s.swift_version = '5.0'
s.resource_bundles = {"TTGSnackbar" => ["TTGSnackbar/PrivacyInfo.xcprivacy"]}
end