-
Notifications
You must be signed in to change notification settings - Fork 154
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
马千里
committed
May 11, 2018
1 parent
8723653
commit 73591d6
Showing
8 changed files
with
125 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
PODS: | ||
- CocoaAsyncSocket (7.6.3) | ||
- MRDLNA (0.1.1): | ||
- CocoaAsyncSocket | ||
- MRDLNA/MRC (= 0.1.1) | ||
- MRDLNA/MRC (0.1.1): | ||
- CocoaAsyncSocket | ||
|
||
DEPENDENCIES: | ||
- MRDLNA | ||
|
||
SPEC CHECKSUMS: | ||
CocoaAsyncSocket: eafaa68a7e0ec99ead0a7b35015e0bf25d2c8987 | ||
MRDLNA: 3fe35c6ac57c946413d07896faeb9101c4d8853d | ||
|
||
PODFILE CHECKSUM: 8018d49e011345a01316aecc97529f44854f0884 | ||
|
||
COCOAPODS: 1.4.0 |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
8 changes: 8 additions & 0 deletions
8
DEMO/dlnaDemo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>IDEDidComputeMac32BitWarning</key> | ||
<true/> | ||
</dict> | ||
</plist> |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
8 changes: 8 additions & 0 deletions
8
Example/MRDLNA.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>IDEDidComputeMac32BitWarning</key> | ||
<true/> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
PODS: | ||
- CocoaAsyncSocket (7.6.3) | ||
- MRDLNA (0.1.1): | ||
- CocoaAsyncSocket | ||
- MRDLNA/MRC (= 0.1.1) | ||
- MRDLNA/MRC (0.1.1): | ||
- CocoaAsyncSocket | ||
|
||
DEPENDENCIES: | ||
- MRDLNA (from `../`) | ||
|
||
EXTERNAL SOURCES: | ||
MRDLNA: | ||
:path: ../ | ||
|
||
SPEC CHECKSUMS: | ||
CocoaAsyncSocket: eafaa68a7e0ec99ead0a7b35015e0bf25d2c8987 | ||
MRDLNA: 46b369c7c36f5d3ac41041b0a2db3e473d43bc7e | ||
|
||
PODFILE CHECKSUM: bb69de52cb74a8e723cd916e3106c142b2fd14d3 | ||
|
||
COCOAPODS: 1.4.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# | ||
# 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.1.1' | ||
s.summary = 'DLNA投屏' | ||
|
||
|
||
s.description = <<-DESC | ||
DLNA投屏,支持各大主流盒子互联网电视. | ||
DESC | ||
|
||
s.homepage = 'https://github.com/MQL9011/MRDLNA' | ||
|
||
s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
s.author = { 'MQL9011' => '[email protected]' } | ||
s.source = { :git => 'https://github.com/MQL9011/MRDLNA.git', :tag => s.version.to_s } | ||
s.social_media_url = 'http://cocomccree.cn/' | ||
|
||
s.ios.deployment_target = '8.0' | ||
|
||
s.source_files = 'MRDLNA/Classes/ARC/**/*' | ||
|
||
# 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' | ||
} | ||
|
||
s.subspec 'MRC' do |sp| | ||
sp.source_files = 'MRDLNA/Classes/MRC/**/*' | ||
sp.requires_arc = false | ||
end | ||
end |