Skip to content

Commit d93d4b9

Browse files
author
chenliming
committed
support carthage
1 parent df6164f commit d93d4b9

File tree

6 files changed

+30
-9
lines changed

6 files changed

+30
-9
lines changed

.gitignore

+22-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,25 @@
1+
# infer
2+
infer-out/
13

2-
#CocoaPods
4+
# Xcode
5+
.DS_Store
6+
build/
7+
*.pbxuser
8+
!default.pbxuser
9+
*.mode1v3
10+
!default.mode1v3
11+
*.mode2v3
12+
!default.mode2v3
13+
*.perspectivev3
14+
!default.perspectivev3
15+
*.xcworkspace
16+
!default.xcworkspace
17+
xcuserdata
18+
profile
19+
*.moved-aside
20+
DerivedData
21+
.idea/
22+
23+
# CocoaPods
324
Pods/
425
Podfile.lock

LFLiveKit.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Pod::Spec.new do |s|
33

44
s.name = "LFLiveKit"
5-
s.version = "1.9.3"
5+
s.version = "1.9.4"
66
s.summary = "LaiFeng ios Live. LFLiveKit."
77
s.homepage = "https://github.com/chenliming777"
88
s.license = { :type => "MIT", :file => "LICENSE" }

LFLiveKit.xcodeproj/project.pbxproj

+6-6
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@
3030
84001FE21D0016380026C63F /* LFGPUImageEmptyFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = 84001FB91D0016380026C63F /* LFGPUImageEmptyFilter.m */; };
3131
84001FE31D0016380026C63F /* LFLiveSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 84001FBA1D0016380026C63F /* LFLiveSession.h */; settings = {ATTRIBUTES = (Public, ); }; };
3232
84001FE41D0016380026C63F /* LFLiveSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 84001FBB1D0016380026C63F /* LFLiveSession.m */; };
33-
84001FE51D0016380026C63F /* LFAudioFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 84001FBD1D0016380026C63F /* LFAudioFrame.h */; };
33+
84001FE51D0016380026C63F /* LFAudioFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 84001FBD1D0016380026C63F /* LFAudioFrame.h */; settings = {ATTRIBUTES = (Public, ); }; };
3434
84001FE61D0016380026C63F /* LFAudioFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 84001FBE1D0016380026C63F /* LFAudioFrame.m */; };
35-
84001FE71D0016380026C63F /* LFFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 84001FBF1D0016380026C63F /* LFFrame.h */; };
35+
84001FE71D0016380026C63F /* LFFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 84001FBF1D0016380026C63F /* LFFrame.h */; settings = {ATTRIBUTES = (Public, ); }; };
3636
84001FE81D0016380026C63F /* LFFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 84001FC01D0016380026C63F /* LFFrame.m */; };
3737
84001FE91D0016380026C63F /* LFLiveDebug.h in Headers */ = {isa = PBXBuildFile; fileRef = 84001FC11D0016380026C63F /* LFLiveDebug.h */; settings = {ATTRIBUTES = (Public, ); }; };
3838
84001FEA1D0016380026C63F /* LFLiveDebug.m in Sources */ = {isa = PBXBuildFile; fileRef = 84001FC21D0016380026C63F /* LFLiveDebug.m */; };
3939
84001FEB1D0016380026C63F /* LFLiveStreamInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 84001FC31D0016380026C63F /* LFLiveStreamInfo.h */; settings = {ATTRIBUTES = (Public, ); }; };
4040
84001FEC1D0016380026C63F /* LFLiveStreamInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 84001FC41D0016380026C63F /* LFLiveStreamInfo.m */; };
41-
84001FED1D0016380026C63F /* LFVideoFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 84001FC51D0016380026C63F /* LFVideoFrame.h */; };
41+
84001FED1D0016380026C63F /* LFVideoFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 84001FC51D0016380026C63F /* LFVideoFrame.h */; settings = {ATTRIBUTES = (Public, ); }; };
4242
84001FEE1D0016380026C63F /* LFVideoFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 84001FC61D0016380026C63F /* LFVideoFrame.m */; };
4343
84001FF71D0017590026C63F /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84001FF61D0017590026C63F /* AVFoundation.framework */; };
4444
84001FF91D00175D0026C63F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84001FF81D00175D0026C63F /* Foundation.framework */; };
@@ -342,6 +342,9 @@
342342
isa = PBXHeadersBuildPhase;
343343
buildActionMask = 2147483647;
344344
files = (
345+
84001FE51D0016380026C63F /* LFAudioFrame.h in Headers */,
346+
84001FED1D0016380026C63F /* LFVideoFrame.h in Headers */,
347+
84001FE71D0016380026C63F /* LFFrame.h in Headers */,
345348
84001FDB1D0016380026C63F /* LFLiveAudioConfiguration.h in Headers */,
346349
B289F1DD1D3DE77F00D9C7A5 /* LFStreamRtmpSocket.h in Headers */,
347350
84001FDD1D0016380026C63F /* LFLiveVideoConfiguration.h in Headers */,
@@ -350,7 +353,6 @@
350353
B289F1DB1D3DE77F00D9C7A5 /* LFStreamingBuffer.h in Headers */,
351354
84001FEB1D0016380026C63F /* LFLiveStreamInfo.h in Headers */,
352355
84001FE91D0016380026C63F /* LFLiveDebug.h in Headers */,
353-
84001FE71D0016380026C63F /* LFFrame.h in Headers */,
354356
B2CD14761D45F18B008082E8 /* LFH264VideoEncoder.h in Headers */,
355357
84001FD61D0016380026C63F /* LFHardwareAudioEncoder.h in Headers */,
356358
B289F1E01D3DE77F00D9C7A5 /* NSMutableArray+LFAdd.h in Headers */,
@@ -359,8 +361,6 @@
359361
84001FD11D0016380026C63F /* LFAudioCapture.h in Headers */,
360362
84001FE11D0016380026C63F /* LFGPUImageEmptyFilter.h in Headers */,
361363
84001FDA1D0016380026C63F /* LFVideoEncoding.h in Headers */,
362-
84001FE51D0016380026C63F /* LFAudioFrame.h in Headers */,
363-
84001FED1D0016380026C63F /* LFVideoFrame.h in Headers */,
364364
B2CD14741D45F18B008082E8 /* VideoEncoder.h in Headers */,
365365
B2CD14731D45F18B008082E8 /* NALUnit.h in Headers */,
366366
84001FD81D0016380026C63F /* LFHardwareVideoEncoder.h in Headers */,
Binary file not shown.

LFLiveKit/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.9.3</string>
18+
<string>1.9.4</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

0 commit comments

Comments
 (0)