Files
Michael Simard 872354b834 Initial commit: SimVision tvOS streaming app
Features:
- VOD library with movie grouping and version detection
- TV show library with season/episode organization
- TMDB integration for trending shows and recently aired episodes
- Recent releases section with TMDB release date sorting
- Watch history tracking with continue watching
- Playlist caching (12-hour TTL) for offline support
- M3U playlist parsing with XStream API support
- Authentication with credential storage

Technical:
- SwiftUI for tvOS
- Actor-based services for thread safety
- Persistent caching for playlists, TMDB data, and watch history
- KSPlayer integration for video playback

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-21 22:12:08 -06:00

31 lines
930 B
Ruby

use_frameworks! :linkage => :static
workspace 'Demo.xcworkspace'
install! 'cocoapods', :generate_multiple_pod_projects => true
def common
pod 'KSPlayer', :path => '../', :testspecs => ['Tests']
pod 'DisplayCriteria', :path => '../'
pod 'Libass', :path => '../FFmpegKit'
pod 'OpenSSL', :path => '../FFmpegKit'
pod 'FFmpegKit', :path => '../FFmpegKit'
# pod 'Libass',:git => 'https://github.com/kingslay/FFmpegKit.git', :branch => 'main'
# pod 'FFmpegKit',:git => 'https://github.com/kingslay/FFmpegKit.git', :branch => 'main'
# pod 'OpenSSL',:git => 'https://github.com/kingslay/FFmpegKit.git', :branch => 'main'
end
target 'demo-iOS' do
project 'demo-iOS/demo-iOS.xcodeproj'
platform :ios, 13.0
common
end
target 'demo-macOS' do
project 'demo-macOS/demo-macOS.xcodeproj'
platform :osx, 10.15
common
end
target 'demo-tvOS' do
project 'demo-tvOS/demo-tvOS.xcodeproj'
platform :tvos, 13.0
common
end