-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCollar.podspec
18 lines (18 loc) · 958 Bytes
/
Collar.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = 'Collar'
s.version = '1.0.4'
s.summary = 'In-app analytics debugging tool'
s.description = <<-DESC
Collar simplifies analytics debugging by showing events, screen views and user properties of your app as they happen.
DESC
s.homepage = 'https://github.com/infinum/ios-collar'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Filip Gulan' => '[email protected]' }
s.source = { :git => 'https://github.com/infinum/ios-collar.git', :tag => s.version.to_s }
s.platform = :ios
s.swift_version = "5.1"
s.ios.deployment_target = '11.0'
s.source_files = 'Sources/Collar/Classes/**/*'
s.resource_bundles = { 'Collar' => ['Sources/Collar/Assets/**/*'] }
s.frameworks = 'UIKit'
end