Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
马千里 committed May 11, 2018
1 parent 8723653 commit 73591d6
Show file tree
Hide file tree
Showing 8 changed files with 125 additions and 0 deletions.
18 changes: 18 additions & 0 deletions DEMO/Podfile.lock
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
1 change: 1 addition & 0 deletions DEMO/Pods/MRDLNA/MRDLNA/Classes/ARC/MRDLNA.m

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions DEMO/dlnaDemo.xcworkspace/contents.xcworkspacedata

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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>
10 changes: 10 additions & 0 deletions Example/MRDLNA.xcworkspace/contents.xcworkspacedata

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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>
22 changes: 22 additions & 0 deletions Example/Podfile.lock
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
48 changes: 48 additions & 0 deletions MRDLNA.podspec
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

0 comments on commit 73591d6

Please sign in to comment.