forked from GetStream/stream-video-swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStreamVideoSwiftUI.podspec
24 lines (20 loc) · 1.02 KB
/
StreamVideoSwiftUI.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |spec|
spec.name = 'StreamVideoSwiftUI'
spec.version = '1.13.0'
spec.summary = 'StreamVideo SwiftUI Video Components'
spec.description = 'StreamVideoSwiftUI SDK offers flexible SwiftUI components able to display data provided by StreamVideo SDK.'
spec.homepage = 'https://getstream.io/video/'
spec.license = { type: 'BSD-3', file: 'LICENSE' }
spec.author = { 'getstream.io' => '[email protected]' }
spec.social_media_url = 'https://getstream.io'
spec.swift_version = '5.9'
spec.platform = :ios, '13.0'
spec.requires_arc = true
spec.framework = 'Foundation', 'SwiftUI'
spec.module_name = spec.name
spec.source = { git: 'https://github.com/GetStream/stream-video-swift.git', tag: spec.version }
spec.source_files = ["Sources/#{spec.name}/**/*.swift"]
spec.exclude_files = ["Sources/#{spec.name}/**/*_Tests.swift", "Sources/#{spec.name}/**/*_Mock.swift"]
spec.resource_bundles = { spec.name => ["Sources/#{spec.name}/Resources/**/*"] }
spec.dependency('StreamVideo', "#{spec.version}")
end