forked from leancloud/leancloud-social-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
LeanCloudSocialDynamic.podspec
25 lines (21 loc) · 1021 Bytes
/
LeanCloudSocialDynamic.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|
component = "LeanCloudSocial"
s.name = "LeanCloudSocialDynamic"
s.version = "0.0.9"
s.summary = "LeanCloud iOS Social SDK for mobile backend."
s.homepage = "https://leancloud.cn"
s.license = { :type => "Commercial", :text => "© Copyright 2015 LeanCloud, Inc. See https://leancloud.cn/terms.html" }
s.author = { "LeanCloud" => "[email protected]" }
s.documentation_url = "https://leancloud.cn/docs/sns.html"
s.platform = :ios, "8.0"
s.source = { :git => "https://github.com/leancloud/leancloud-social-ios.git", :tag => s.version.to_s }
s.source_files = "Classes/*.{h,m}"
s.public_header_files = "Classes/AVUser+SNS.h", "Classes/AVOSCloudSNS.h"
s.dependency "AVOSCloudDynamic"
s.dependency "AFNetworking", "~> 2.0"
s.xcconfig = {
"OTHER_LDFLAGS" => "$(inherited) -ObjC",
"FRAMEWORK_SEARCH_PATHS" => "\"${PODS_ROOT}/#{s.name}/**\"",
"LD_RUNPATH_SEARCH_PATHS" => "@loader_path/../Frameworks"
}
end