Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 14 additions & 12 deletions BaseTracking.podspec
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
Pod::Spec.new do |s|
s.name = "BaseTracking"
s.version = "1.0.5"
s.summary = "BaseTracking is the easiest way to setup your analytics in Swift"
s.requires_arc = true
s.homepage = "https://github.com/thejohnlima/BaseTracking"
s.license = "MIT"
s.author = { "John Lima" => "thejohnlima@icloud.com" }
s.social_media_url = "https://twitter.com/thejohnlima"
s.platform = :ios, "9.3"
s.source = { :git => "https://github.com/thejohnlima/BaseTracking.git", :tag => "#{s.version}" }
s.source_files = "Sources/BaseTracking/*.{swift}"
s.swift_version = "5.0"
s.name = "BaseTracking"
s.version = "1.0.5"
s.summary = "BaseTracking is the easiest way to setup your analytics in Swift"
s.requires_arc = true
s.homepage = "https://github.com/thejohnlima/BaseTracking"
s.license = "MIT"
s.author = { "John Lima" => "thejohnlima@icloud.com" }
s.social_media_url = "https://twitter.com/thejohnlima"
s.ios.deployment_target = "9.3"
s.tvos.deployment_target = "9.0"
s.watchos.deployment_target = "4.0"
s.source = { :git => "https://github.com/thejohnlima/BaseTracking.git", :tag => "#{s.version}" }
s.source_files = "Sources/BaseTracking/*.{swift}"
s.swift_version = "5.0"
end
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion Examples/SEDemo/Podfile → Examples/iOS/SEDemo/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ target 'SEDemo' do

# Pods for SEDemo
pod 'Analytics'
pod 'BaseTracking', :path => '../../'
pod 'BaseTracking', :path => '../../../'
pod 'LMStorage'

end
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
PODS:
- Analytics (4.1.4)
- BaseTracking (1.0.4)
- BaseTracking (1.0.5)
- KeychainSwift (19.0.0)
- LMStorage (1.0.1):
- LMStorage (1.0.4):
- KeychainSwift

DEPENDENCIES:
- Analytics
- BaseTracking (from `../../`)
- BaseTracking (from `../../../`)
- LMStorage

SPEC REPOS:
Expand All @@ -18,14 +18,14 @@ SPEC REPOS:

EXTERNAL SOURCES:
BaseTracking:
:path: "../../"
:path: "../../../"

SPEC CHECKSUMS:
Analytics: 7bdc735c456434b4eaa2eacdcf122bb03d51ede7
BaseTracking: 43a0d8806d3b0beb12ec9ace05c7fc43e197f90f
BaseTracking: a0e8176653970920285365a33e3c416f6449f0ca
KeychainSwift: a06190cf933ad46b1e0abc3d77d29c06331715c7
LMStorage: 2ecbdb40eeda05e6a5d324c282b2ff5d684c3387
LMStorage: 53fb8c656345fce168266771db73c0b1690df3b5

PODFILE CHECKSUM: 3e5bb8cab8bc4860abc4b8f446f1e165b50f4249
PODFILE CHECKSUM: cdf4d924ce4794765dea0f5079abd8edaf81e8ee

COCOAPODS: 1.10.1
14 changes: 14 additions & 0 deletions Examples/tvOS/SEDemo/Podfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'

target 'SEDemo' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
inhibit_all_warnings!

# Pods for SEDemo
pod 'Analytics'
pod 'BaseTracking', :path => '../../../'
pod 'LMStorage'

end
31 changes: 31 additions & 0 deletions Examples/tvOS/SEDemo/Podfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
PODS:
- Analytics (4.1.4)
- BaseTracking (1.0.5)
- KeychainSwift (19.0.0)
- LMStorage (1.0.4):
- KeychainSwift

DEPENDENCIES:
- Analytics
- BaseTracking (from `../../../`)
- LMStorage

SPEC REPOS:
trunk:
- Analytics
- KeychainSwift
- LMStorage

EXTERNAL SOURCES:
BaseTracking:
:path: "../../../"

SPEC CHECKSUMS:
Analytics: 7bdc735c456434b4eaa2eacdcf122bb03d51ede7
BaseTracking: a0e8176653970920285365a33e3c416f6449f0ca
KeychainSwift: a06190cf933ad46b1e0abc3d77d29c06331715c7
LMStorage: 53fb8c656345fce168266771db73c0b1690df3b5

PODFILE CHECKSUM: fda27e22fa735115aa01ae00639d2cd46571dbdd

COCOAPODS: 1.10.1
Loading