-
Notifications
You must be signed in to change notification settings - Fork 159
Expand file tree
/
Copy pathMRDLNA.podspec
More file actions
45 lines (33 loc) · 1.5 KB
/
Copy pathMRDLNA.podspec
File metadata and controls
45 lines (33 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#
# Be sure to run `pod lib lint MRDLNA.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'MRDLNA'
s.version = '0.3.1'
s.summary = 'DLNA投屏'
s.description = <<-DESC
DLNA投屏,支持各大主流盒子互联网电视. v0.3.1更新: 修复XML解析问题(issue #43), 修复iOS16+设备搜索问题(issue #33/#34), 增加本地网络权限支持, 增强错误处理和日志输出.
DESC
s.homepage = 'https://github.com/MQL9011/MRDLNA'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'MQL9011' => '301063915@qq.com' }
s.source = { :git => 'https://github.com/MQL9011/MRDLNA.git', :tag => s.version.to_s }
s.social_media_url = 'https://github.com/MQL9011'
s.ios.deployment_target = '12.0'
s.source_files = 'MRDLNA/Classes/ARC/**/*'
s.public_header_files = 'MRDLNA/Classes/ARC/**/*.h'
# s.resource_bundles = {
# 'MRDLNA' => ['MRDLNA/Assets/*.png']
# }
# s.public_header_files = 'Pod/Classes/**/*.h'
s.libraries = 'icucore', 'c++', 'z', 'xml2'
s.dependency 'CocoaAsyncSocket'
s.xcconfig = {'ENABLE_BITCODE' => 'NO',
'HEADER_SEARCH_PATHS' => '${SDKROOT}/usr/include/libxml2',
'CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES' => 'YES'
}
end