-
Notifications
You must be signed in to change notification settings - Fork 1
/
ZJLog.podspec
28 lines (25 loc) · 1.09 KB
/
ZJLog.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
Pod::Spec.new do |s|
s.name = "ZJLog"
s.version = "1.2.3"
s.summary = "Log redirection output tool for iOS, support for c、c++、m、mm code files."
s.description = <<-DESC
Log redirection output tool for iOS, you can set the Log level, redirect output to the proxy interface, save logs to the sandbox, support for c、c++、m、mm code files, and more.
DESC
s.homepage = "https://github.com/Eafy/ZJLog"
s.license = { :type => "MIT" }
s.author = { "eafy" => "[email protected]" }
s.source = { :git => "https://github.com/Eafy/ZJLog.git", :tag => "v#{s.version}" }
s.platform = :ios, "11.0"
s.pod_target_xcconfig = {
'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64',
'EXCLUDED_ARCHS[sdk=iphoneos*]' => 'armv7s armv7'
}
s.user_target_xcconfig = {
'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64',
'EXCLUDED_ARCHS[sdk=iphoneos*]' => 'armv7s armv7'
}
s.source_files = "ZJLog/**/*.{h,m,c,mm}"
s.libraries = "c++"
end
#推送命令
#pod trunk push ZJLog.podspec --verbose --allow-warnings --use-libraries