22 lines
1016 B
Ruby
22 lines
1016 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'ScoreTracker'
|
|
s.version = '0.1.0'
|
|
s.summary = 'Score mobile tracker (iOS) — KMP shared core + Swift facade.'
|
|
s.description = <<-DESC
|
|
Lightweight app analytics / fan-engagement tracker. Emits the same event
|
|
envelope as the Score web tracker (@3halves-labs/score-tracker), with a
|
|
durable offline queue, consent gating, and Auth0 JWT support.
|
|
DESC
|
|
s.homepage = 'https://git.3halves-labs.com/3HL-SCORE/public-sdks-score'
|
|
s.license = { :type => 'MIT' }
|
|
s.author = '3 Halves Labs'
|
|
s.platform = :ios, '14.0'
|
|
s.swift_version = '5.9'
|
|
|
|
# Release attaches the zipped XCFramework; point :http at that asset.
|
|
s.source = { :http => 'https://git.3halves-labs.com/3HL-SCORE/public-sdks-score/releases/download/mobile-v0.1.0/ScoreTrackerKit.xcframework.zip' }
|
|
|
|
s.vendored_frameworks = 'ScoreTrackerKit.xcframework'
|
|
s.source_files = 'Sources/ScoreTracker/**/*.swift'
|
|
end
|