-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTCFoundation.podspec
More file actions
49 lines (37 loc) · 1.69 KB
/
TCFoundation.podspec
File metadata and controls
49 lines (37 loc) · 1.69 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#
# Be sure to run `pod spec lint TCFoundation.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 https://guides.cocoapods.org/syntax/podspec.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |spec|
spec.name = "TCFoundation"
spec.version = "1.0.5"
spec.summary = "iOS OC基础库Foundation"
spec.description = <<-DESC
iOS OC基础库Foundation,目前支持:network、io、config、event等基础功能
DESC
spec.homepage = "https://github.com/flatads/tcfundation"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "flatads" => "flatincbr.dev@gmail.com" }
spec.source = { :git => "https://github.com/flatads/tcfundation.git", :tag => "#{spec.version}" }
spec.platform = :ios, "9.0"
spec.ios.deployment_target = "9.0"
spec.libraries = "c++"
spec.requires_arc = true
spec.static_framework = true
spec.frameworks = 'Foundation', 'Security', 'SystemConfiguration', 'CoreTelephony', 'MobileCoreServices'
spec.pod_target_xcconfig = {
'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64',
'CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES' => 'YES'
}
spec.user_target_xcconfig = {
'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64',
'CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES' => 'YES'
}
spec.vendored_frameworks = "TCFoundation/**/*.{framework}"
spec.dependency "AFNetworking", "~> 4.0.1"
spec.dependency "FMDB", "~> 2.7.5"
spec.dependency "TCUtil", "~> 1.0.2"
end