Files
streamyfin/modules/mpv-player/ios/MpvPlayer.podspec
2025-04-21 04:38:03 +10:00

27 lines
812 B
Ruby

Pod::Spec.new do |s|
s.name = 'MpvPlayer'
s.version = '0.40.0'
s.summary = 'MPVKit player for iOS/tvOS'
s.description = 'A module that integrates MPVKit for video playback in iOS and tvOS applications'
s.author = ''
s.source = { git: '' }
s.homepage = 'https://github.com/mpvkit/MPVKit'
s.platforms = { :ios => '13.4', :tvos => '13.4' }
s.dependency 'ExpoModulesCore'
spm_dependency(s,
url: 'https://github.com/mpvkit/MPVKit.git',
requirement: {kind: 'upToNextMajorVersion', minimumVersion: '0.40.0'},
products: ['MPVKit']
)
# Swift/Objective-C compatibility
s.pod_target_xcconfig = {
'DEFINES_MODULE' => 'YES',
'SWIFT_COMPILATION_MODE' => 'wholemodule'
}
s.source_files = "*.{h,m,mm,swift,hpp,cpp}"
end