forked from Kjuly/KYLogger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKYLogger.podspec
More file actions
25 lines (20 loc) · 970 Bytes
/
KYLogger.podspec
File metadata and controls
25 lines (20 loc) · 970 Bytes
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 |spec|
spec.name = "KYLogger"
spec.version = "1.4.1"
spec.summary = "A local system logger for Apple platforms."
spec.description = <<-DESC
This lightweight logging lib is serverless. It includes a debug logger and a file logger which will save logs locally on the device. Users can choose to send a log file when a bug is reported.
DESC
spec.license = "MIT"
spec.source = { :git => "https://github.com/Kjuly/KYLogger.git", :tag => spec.version.to_s }
spec.homepage = "https://github.com/Kjuly/KYLogger"
spec.author = { "Kjuly" => "dev@kjuly.com" }
spec.social_media_url = "https://twitter.com/kJulYu"
spec.ios.deployment_target = "15.5"
spec.osx.deployment_target = "12.0"
spec.watchos.deployment_target = "6.0"
spec.swift_version = '5.0'
spec.source_files = "KYLogger"
spec.exclude_files = "KYLogger/KYLogger.docc"
spec.requires_arc = true
end