Skip to content

Commit

Permalink
更新sdk接口
Browse files Browse the repository at this point in the history
Change-Id: I7410a8371a936a15aabeb7b069a7ba7412d81908
  • Loading branch information
tonychanchen committed Mar 5, 2021
1 parent e9e702e commit 6f5c9fc
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ target 'LinkApp' do
pod 'KeychainAccess', '4.2.0'
pod 'Tencent-MapSDK', '4.3.9'
pod 'lottie-ios', '3.1.8'
pod 'TIoTThridSDK/TPNS-iOS', '1.0.5' #'~> 1.0.5-beta.1'
pod 'TIoTThridSDK/WechatOpenSDK_NoPay', '1.0.5' #'~> 1.0.5-beta.1'#
pod 'TIoTThridSDK/TPNS-iOS', '1.0.6' #'~> 1.0.5-beta.1'
pod 'TIoTThridSDK/WechatOpenSDK_NoPay', '1.0.6' #'~> 1.0.5-beta.1'#
end

target 'LinkSDKDemo' do
Expand Down
18 changes: 9 additions & 9 deletions Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -131,11 +131,11 @@ PODS:
- TIoTThridSDK/Faac-iOS
- TIoTThridSDK/IJKPlayer-iOS
- TIoTThridSDK/XP2P-iOS
- TIoTThridSDK/Faac-iOS (1.0.5)
- TIoTThridSDK/IJKPlayer-iOS (1.0.5)
- TIoTThridSDK/TPNS-iOS (1.0.5)
- TIoTThridSDK/WechatOpenSDK_NoPay (1.0.5)
- TIoTThridSDK/XP2P-iOS (1.0.5)
- TIoTThridSDK/Faac-iOS (1.0.6)
- TIoTThridSDK/IJKPlayer-iOS (1.0.6)
- TIoTThridSDK/TPNS-iOS (1.0.6)
- TIoTThridSDK/WechatOpenSDK_NoPay (1.0.6)
- TIoTThridSDK/XP2P-iOS (1.0.6)
- TrueTime (5.0.3)
- TXLiteAVSDK_TRTC (8.0.9644)
- TZImagePickerController (3.2.1)
Expand All @@ -159,8 +159,8 @@ DEPENDENCIES:
- TIoTLinkKit (from `./`)
- TIoTLinkKit/LinkRTC (from `./`)
- TIoTLinkKit/LinkVideo (from `./`)
- TIoTThridSDK/TPNS-iOS (= 1.0.5)
- TIoTThridSDK/WechatOpenSDK_NoPay (= 1.0.5)
- TIoTThridSDK/TPNS-iOS (= 1.0.6)
- TIoTThridSDK/WechatOpenSDK_NoPay (= 1.0.6)
- TrueTime (= 5.0.3)
- TZImagePickerController (= 3.2.1)
- YYModel (= 1.0.4)
Expand Down Expand Up @@ -239,12 +239,12 @@ SPEC CHECKSUMS:
SocketRocket: d57c7159b83c3c6655745cd15302aa24b6bae531
Tencent-MapSDK: 6dfbee53b46131deb4c4bb02b3edc5ce7fb630dc
TIoTLinkKit: 8d8ce502e94c41a5c7f9f2ea43e82c9d1483810e
TIoTThridSDK: 2d10ff67f67fcbe9a848e5afef64a26de2f4fd72
TIoTThridSDK: 19c91924fd10f0956db4f9edb331bb2c619f69f6
TrueTime: b49551ffafb28a9dee04e51b226f42a416010842
TXLiteAVSDK_TRTC: e3383a81565e8bb2aaaaab4bd099ad5239cd5b2d
TZImagePickerController: bf4c57b98d8707fce41ea6be872414a71c7a8c9d
YYModel: 2a7fdd96aaa4b86a824e26d0c517de8928c04b30

PODFILE CHECKSUM: c39a31a763e17cac4b9ad2308aa62fe2e89efd20
PODFILE CHECKSUM: 7e45d7712f50cf3d808198be13e6a5a441d5a509

COCOAPODS: 1.9.3
6 changes: 3 additions & 3 deletions Source/SDK/LinkVideo/TIoTCoreXP2PBridge.mm
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,9 @@ - (void)startAppWith:(NSString *)sec_id sec_key:(NSString *)sec_key pro_id:(NSSt
}

- (NSString *)getUrlForHttpFlv {
std::string httpflv = delegateHttpFlv();
NSLog(@"httpflv---%s",httpflv.c_str());
return [NSString stringWithCString:httpflv.c_str() encoding:[NSString defaultCStringEncoding]];
const char *httpflv = delegateHttpFlv();
NSLog(@"httpflv---%s",httpflv);
return [NSString stringWithCString:httpflv encoding:[NSString defaultCStringEncoding]];
}

- (void)getCommandRequestWithAsync:(NSString *)cmd timeout:(uint64_t)timeout completion:(void (^ __nullable)(NSString * jsonList))completion{
Expand Down

0 comments on commit 6f5c9fc

Please sign in to comment.