forked from leancloud/leancloud-feedback-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAVOSCloudFeedback.podspec
25 lines (20 loc) · 935 Bytes
/
AVOSCloudFeedback.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 = "AVOSCloudFeedback"
s.version = "0.0.1"
s.platform = :ios, "5.1.1"
s.summary = "LeanCloud iOS SDK for mobile backend."
s.homepage = "https://leancloud.cn"
s.documentation_url = "https://leancloud.cn/docs/feedback.html"
s.license = {
:type => "Commercial",
:text => "Copyright 2015 LeanCloud, Inc. See https://leancloud.cn/terms.html"
}
s.author = { "LeanCloud" => "[email protected]" }
s.source = { :git => "https://github.com/leancloud/leancloud-feedback-ios.git", :tag => s.version.to_s }
s.source_files = "LeanCloudFeedback/**/*.{h,m}"
s.public_header_files = "LeanCloudFeedback/**/*.h"
s.resources = "LeanCloudFeedback/resources/*.png"
s.xcconfig = { 'OTHER_LDFLAGS' => '$(inherited) -undefined dynamic_lookup' }
s.frameworks = 'Foundation', 'UIKit', 'CoreGraphics', 'QuartzCore'
s.dependency 'AVOSCloud', '~> 3.1.2.6'
end