forked from nhancv/flutter_rtmp_publisher
-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathrtmp_broadcaster.podspec
24 lines (23 loc) · 1004 Bytes
/
rtmp_broadcaster.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
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html.
# Run `pod lib lint rtmp_broadcaster.podspec' to validate before publishing.
#
Pod::Spec.new do |s|
s.name = 'rtmp_broadcaster'
s.version = '0.0.1'
s.summary = 'FLutter plugin to allow rtmp to work with ios.'
s.description = <<-DESC
A new flutter plugin project.
DESC
s.homepage = 'https://github.com/nhancv/flutter_rtmp_broadcaster'
s.license = { :file => '../LICENSE' }
s.author = { 'WhelkSoft' => '[email protected]' }
s.source = { :path => '.' }
s.source_files = 'Classes/**/*'
s.dependency 'Flutter'
s.dependency 'HaishinKit', '~> 1.0.10'
s.platform = :ios, '10.0'
# Flutter.framework does not contain a i386 slice. Only x86_64 simulators are supported.
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'VALID_ARCHS[sdk=iphonesimulator*]' => 'x86_64' }
s.swift_version = '5.2'
end