Publish Score iOS SDK 0.1.0 (SPM package + podspec + docs)

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
Blake
2026-08-06 01:27:14 -04:00
commit ca717e4656
7 changed files with 393 additions and 0 deletions

21
ScoreTracker.podspec Normal file
View File

@@ -0,0 +1,21 @@
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