* feat: add ios and rn source * fix(ios): remove testing keys * fix(tracker): change default path
14 lines
659 B
Ruby
14 lines
659 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'ORTracker'
|
|
s.version = '0.1.0'
|
|
s.summary = 'A short description of ORTracker.'
|
|
s.homepage = 'https://github.com/openreplay/openreplay/tracker/tracker-ios'
|
|
s.license = { :type => 'ELv2', :file => 'LICENSE.md' }
|
|
s.author = { 'Nick Delirium' => 'nick.delirium@proton.me' }
|
|
s.source = { :git => 'https://github.com/openreplay/openreplay/tracker/tracker-ios', :tag => s.version.to_s }
|
|
s.ios.deployment_target = '13.0'
|
|
s.swift_version = '5.0'
|
|
s.source_files = 'Sources/ORTracker/**/*'
|
|
s.dependency 'SWCompression'
|
|
s.dependency 'DeviceKit'
|
|
end
|