-
-
Notifications
You must be signed in to change notification settings - Fork 189
/
Mantis.podspec
35 lines (30 loc) · 1.41 KB
/
Mantis.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
33
34
35
#
# Be sure to run `pod spec lint Mantis.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |s|
s.name = "Mantis"
s.version = "2.23.1"
s.summary = "An iOS Image cropping library, which mimics the Photo App written in Swift and provides rich cropping interactions."
s.description = <<-DESC
Mantis is an iOS Image cropping library, which mimics the Photo App written in Swift and provides rich cropping interactions for your iOS/Mac app (Catalyst only).
DESC
s.homepage = "https://github.com/guoyingtao/Mantis"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Yingtao Guo" => "[email protected]" }
s.social_media_url = "http://twitter.com/guoyingtao"
s.platform = :ios
s.swift_version = "5.0"
s.ios.deployment_target = "12.0"
s.source = { :git => "https://github.com/guoyingtao/Mantis.git", :tag => "v#{s.version}" }
s.source_files = "Sources/**/*.{h,swift}"
s.resource_bundles = {
"MantisResources" => ["Sources/**/*.lproj/*.strings"]
}
s.pod_target_xcconfig = {
"PRODUCT_BUNDLE_IDENTIFIER": "com.echo.framework.Mantis"
}
end