-
Notifications
You must be signed in to change notification settings - Fork 95
/
atlantis-proxyman.podspec
29 lines (25 loc) · 1.43 KB
/
atlantis-proxyman.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
Pod::Spec.new do |spec|
spec.name = "atlantis-proxyman"
spec.version = "1.25.2"
spec.summary = "A iOS framework for intercepting HTTP/HTTPS Traffic without Proxy and Certificate config"
spec.description = <<-DESC
✅ A iOS framework (Developed and Maintained by Proxyman Team) for intercepting HTTP/HTTPS Traffic from your app. No more messing around with proxy, certificate config.
✅ Automatically intercept all HTTP/HTTPS Traffic from your app
✅ No need to config HTTP Proxy, Install or Trust any Certificate
Review Request/Response from Proxyman macOS
Categorize the log by project and devices.
DESC
spec.homepage = "https://proxyman.io/"
spec.documentation_url = 'https://github.com/ProxymanApp/atlantis'
spec.screenshots = "https://raw.githubusercontent.com/ProxymanApp/atlantis/main/images/capture_ws_proxyman.jpg"
spec.license = { :type => "Apache License, Version 2.0", :file => "LICENSE" }
spec.author = { "Proxyman LLC" => "nghia@proxyman.io" }
spec.social_media_url = "https://twitter.com/proxyman_app"
spec.ios.deployment_target = "13.0"
spec.osx.deployment_target = "10.15"
spec.tvos.deployment_target = '13.0'
spec.module_name = "Atlantis"
spec.source = { :git => "https://github.com/ProxymanApp/atlantis.git", :tag => "#{spec.version}" }
spec.source_files = 'Sources/*.swift'
spec.swift_versions = ['5.0', '5.1', '5.2', '5.3']
end