-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAppReports.podspec
More file actions
28 lines (21 loc) · 888 Bytes
/
AppReports.podspec
File metadata and controls
28 lines (21 loc) · 888 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
26
27
28
Pod::Spec.new do |s|
s.name = "AppReports"
s.version = "1.0.5"
s.summary = "Reports events and errors helper class"
s.description = <<-DESC
Reports events and errors helper class.
Write and use for swift.
You can write helper on swift with support objc as wrapper for this class.
DESC
s.homepage = "https://github.com/ProVir/AppReports"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "ViR (Vitaliy Korotkiy)" => "admin@provir.ru" }
s.source = { :git => "https://github.com/ProVir/AppReports.git", :tag => "#{s.version}" }
s.swift_version = '5.0'
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
s.source_files = 'AppReports/*.{h,swift}'
s.public_header_files = 'AppReports/*.h'
end