-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathXNLogger.podspec
33 lines (24 loc) · 1.57 KB
/
XNLogger.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
29
30
31
32
33
Pod::Spec.new do |s|
s.name = "XNLogger"
s.version = "3.0.0"
s.summary = "Network Logger - Framework to log network traffics"
s.description = <<-DESC
XNLogger is simple and extensible network traffic logger. It makes easy to log network request and response on file, Xcode console or send log to servers. It provides user friendly UI for debugging and testing purpose.
DESC
s.homepage = "https://github.com/sunilsharma08/XNLogger"
s.screenshots = "https://raw.githubusercontent.com/sunilsharma08/XNLogger/master/XNLoggerExample/ExampleAppScreenshots/LogListScreen.png", "https://raw.githubusercontent.com/sunilsharma08/XNLogger/master/XNLoggerExample/ExampleAppScreenshots/LogDetailsRequestScreen.png", "https://raw.githubusercontent.com/sunilsharma08/XNLogger/master/XNLoggerExample/ExampleAppScreenshots/LogDetailsResponseScreen.png"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Sunil Sharma" => "sunilsharma.ss08@gmail.com" }
s.social_media_url = "https://twitter.com/sunil5309"
s.platform = :ios
s.swift_version = '5.0'
s.ios.deployment_target = "12.0"
s.source = { :git => "https://github.com/sunilsharma08/XNLogger.git", :tag => "v#{s.version}" }
s.source_files = "XNLogger/**/*.{swift,h,m}"
s.resources = "XNLogger/UI/**/*.{xcassets,storyboard,xib}"
s.requires_arc = true
# Add framework as dependencies
# s.ios.frameworks = 'MobileCoreServices', 'SystemConfiguration'
# s.osx.frameworks = 'CoreServices', 'SystemConfiguration'
s.frameworks = 'WebKit'
end