mirror of
https://github.com/aptabase/aptabase-swift.git
synced 2026-01-18 22:21:17 +01:00
* Directly add DocC dependency in package file Since the package now only supports Swift 5.6 and higher we don't need to check before adding the DocC dependency. * Update README Just a small change to show the latest app version in the example. * Update Swift version Since 5.6 support was previously dropped, updating the package files to reflect that.
15 lines
850 B
Ruby
15 lines
850 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'Aptabase'
|
|
s.version = '0.3.3'
|
|
s.summary = 'Swift SDK for Aptabase: Open Source, Privacy-First and Simple Analytics for Mobile, Desktop and Web Apps'
|
|
s.homepage = 'https://aptabase.com'
|
|
s.license = { :type => 'MIT', :file => 'LICENSE' }
|
|
s.author = { 'Guilherme Oenning' => 'goenning@aptabase.com' }
|
|
s.source = { :git => 'https://github.com/aptabase/aptabase-swift.git', :tag => s.version.to_s }
|
|
s.ios.deployment_target = '13.0'
|
|
s.osx.deployment_target = "10.15"
|
|
s.watchos.deployment_target = "6.0"
|
|
s.tvos.deployment_target = "13.0"
|
|
s.swift_version = '5.7'
|
|
s.source_files = 'Sources/Aptabase/**/*'
|
|
end |