diff --git a/Pod/universal/QNRTPlayerKit.framework/Headers/QNRTPlayer.h b/Pod/universal/QNRTPlayerKit.framework/Headers/QNRTPlayer.h new file mode 100644 index 0000000..3535d85 --- /dev/null +++ b/Pod/universal/QNRTPlayerKit.framework/Headers/QNRTPlayer.h @@ -0,0 +1,217 @@ +// +// QNRTPlayer.h +// QNRTPlayerKit +// +// Created by 何云旗 on 2020/12/23. +// + +#import +#import "QNRTTypeDefines.h" + +@class QNRTPlayer; +@class QNRTVideoView; + +NS_ASSUME_NONNULL_BEGIN + +/*! + * @protocol QNRTPlayerDelegate + * + * @discussion QNRTPlayer 在运行过程中的状态和事件回调。 + * + * @since v1.0.0 + */ +@protocol QNRTPlayerDelegate + +@optional +/*! + * @abstract SDK 运行过程中发生错误会通过该方法回调。 + * + * @discussion 具体错误码的含义可以见 QNRTTypeDefines.h 文件。 + * + * @since v1.0.0 + */ +- (void)RTPlayer:(QNRTPlayer *)player didFailWithError:(NSError *)error; + +/** + * QNRTPlayer 在运行过程中,状态发生变化的回调 + * + * @param player QNRTPlayer + * @param playState 播放状态 + * @discussion QNRTPlayStateError 不会通过此回调,会通过 - (void)RTPlayer:(QNRTPlayer *)player didFailWithError:(NSError *)error;回调出来。 + * + * @since v1.0.0 + */ +- (void)RTPlayer:(QNRTPlayer *)player playStateDidChange:(QNRTPlayState)playState; + +/*! + * @abstract 统计信息回调。 + * + * @discussion 回调的时间间隔由 statisticInterval 参数决定,statisticInterval 默认为 0,即不回调统计信息。 + * + * @see statisticInterval + * + * @since v1.0.0 + */ +- (void)RTPlayer:(QNRTPlayer *)player didGetStatistic:(NSDictionary *)statistic; + +/*! + * @abstract 当前流媒体流收到音频轨道。 + * + * @since v1.0.0 + */ +- (void)RTPlayer:(QNRTPlayer *)player trackDidReceived:(QNRTSourceKind )kind; + +/*! + * @abstract 音视频首帧解码后的回调。 + * + * @since v1.0.0 + */ +- (void)RTPlayer:(QNRTPlayer *)player firstSourceDidDecode:(QNRTSourceKind )kind; + +@end + +@interface QNRTPlayer : NSObject + +/*! + * @abstract 状态回调的 delegate。 + * + * @since v1.0.0 + */ +@property (nonatomic, weak) id delegate; + +/*! + * @abstract 播放状态 + * + * @since v1.0.0 + */ +@property (nonatomic, assign, readonly) QNRTPlayState playState; + +/*! + * @abstract 是否在播放 + * + * @since v1.0.0 + */ +@property (nonatomic, assign, readonly) BOOL isPlaying; + +/*! + * @abstract 播放 url + * + * @since v1.0.0 + */ +@property (nonatomic, copy, readonly) NSURL *playUrl; + +/*! + * @abstract 播放音量。 + * + * @discussion 范围从 0 ~ 1,默认为 1。 + * + * @since v1.0.0 + */ +@property (nonatomic, assign) double volume; + +/** + * 视频的宽 + * + * @since v1.0.0 + */ +@property (nonatomic, assign, readonly) CGFloat width; + +/** + * 视频的高 + * + * @since v1.0.0 + */ +@property (nonatomic, assign, readonly) CGFloat height; + +/*! + * @abstract 统计信息回调的时间间隔。 + * + * @discussion 单位为秒。默认为 0,即默认不会回调统计信息。 + * + * @since v1.0.0 + */ +@property (nonatomic, assign) NSUInteger statisticInterval; + +/*! + * @abstract 渲染播放画面。 + * + * @since v1.0.0 + */ +@property (nonatomic, strong) QNRTVideoView *playView; + +/** + * 开始播放新的 url + * + * @param url 需要播放的 url ,目前支持 webrtc (url 以 webrtc:// 开头) 协议。 + * @param isSupport 当前播放 URL 是否支持 SSL 证书,默认为 NO + * + * @since v1.0.0 + */ +- (void)playWithUrl:(NSURL *)url supportHttps:(BOOL)isSupport; + +/** + * 停止播放器 + * + * @since v1.0.0 + */ +- (void)stop; + +/** + * 静音 + * + * @since 1.0.0 + */ +- (void)muteAudio:(BOOL)mute; +/** + * 停止画面渲染 + * + * @since 1.0.0 + */ +- (void)muteVideo:(BOOL)mute; + +@end + +#pragma mark - Category (Logging) + +/*! + * @category QNRTPlayer(Logging) + * + * @discussion 与日志相关的接口。 + * + * @since v1.0.0 + */ +@interface QNRTPlayer (Logging) + +/*! +* @abstract 开启文件日志 +* +* @discussion 为了不错过日志,建议在 App 启动时即开启,日志文件位于 App Container/Library/Caches/Pili/RTLogs 目录下以 QNRTPlayer+当前时间命名的目录内 +* 注意:文件日志功能主要用于排查问题,打开文件日志功能会对性能有一定影响,上线前请记得关闭文件日志功能! +* +* @since v1.0.0 +*/ ++ (void)enableFileLogging; + +@end + +#pragma mark - Category (Info) + +/*! + * @category QNRTPlayer(Info) + * + * @discussion SDK 相关信息的接口。 + * + * @since v1.0.0 + */ +@interface QNRTPlayer (Info) + +/*! + * @abstract 获取 SDK 的版本信息。 + * + * @since v1.0.0 + */ ++ (NSString *)versionInfo; + +@end + +NS_ASSUME_NONNULL_END diff --git a/Pod/universal/QNRTPlayerKit.framework/Headers/QNRTPlayerKit.h b/Pod/universal/QNRTPlayerKit.framework/Headers/QNRTPlayerKit.h new file mode 100644 index 0000000..d4964ff --- /dev/null +++ b/Pod/universal/QNRTPlayerKit.framework/Headers/QNRTPlayerKit.h @@ -0,0 +1,23 @@ +// +// QNRTPlayerKit.h +// QNRTPlayerKit +// +// Created by 何云旗 on 2020/12/23. +// + +#import + +//! Project version number for QNRTPlayerKit. +FOUNDATION_EXPORT double QNRTPlayerKitVersionNumber; + +//! Project version string for QNRTPlayerKit. +FOUNDATION_EXPORT const unsigned char QNRTPlayerKitVersionString[]; + +// In this header, you should import all the public headers of your framework using statements like #import + + +#import +#import +#import +#import + diff --git a/Pod/universal/QNRTPlayerKit.framework/Headers/QNRTTypeDefines.h b/Pod/universal/QNRTPlayerKit.framework/Headers/QNRTTypeDefines.h new file mode 100644 index 0000000..b68a14d --- /dev/null +++ b/Pod/universal/QNRTPlayerKit.framework/Headers/QNRTTypeDefines.h @@ -0,0 +1,108 @@ +// +// QNRTTypeDefines.h +// QNRTPlayerKit +// +// Created by 何云旗 on 2020/12/24. +// + +#ifndef QNRTPlayerKit_QNRTTypeDefines_h +#define QNRTPlayerKit_QNRTTypeDefines_h + +#import +#import + +extern NSString *QNRTErrorDomain; + +#pragma mark - RTPlayer Error Code + +NS_ERROR_ENUM(QNRTErrorDomain) +{ + // 服务请求超时,或者域名解析错误等 + QNRTErrorNetworkError = 20001, + // 请求服务鉴权失败 + QNRTErrorAuthFailed = 20002, + // 播放流地址不存在 + QNRTErrorPlayStreamNotExit = 20003, + // 对应服务 invalid parameter / server error + QNRTErrorPlayRequestFailed = 20004, + // 内部sdp错误 + QNRTErrorDescriptionError = 20005, + // 连接异常 + QNRTErrorConnectFailed = 20006, + +}; + +///音频播放状态 +typedef NS_ENUM(NSUInteger, QNRTPlayState) { + /*! + * @abstract 未知状态,只会作为 init 前的初始状态,开始播放之后任何情况下都不会再回到此状态。 + * + * @since v1.0.0 + */ + QNRTPlayStateUnknow, + /*! + * @abstract 初始状态 + * + * @since v1.0.0 + */ + QNRTPlayStateInit = 0, + /*! + * @abstract 准备播放的状态 + * + * @since v1.0.0 + */ + QNRTPlayStateReady, + /*! + * @abstract 正在播放的状态 + * + * @since v1.0.0 + */ + QNRTPlayStatePlaying, + /*! + * @abstract 停止播放的状态 + * + * @since v1.0.0 + */ + QNRTPlayStateStoped, + /*! + * @abstract 播放发生错误的状态 + * + * @since v1.0.0 + */ + QNRTPlayStateError +}; + +/*! + @typedef QNRTSourceKind + @abstract 定义 Source 的类型。 + */ +typedef NS_ENUM(NSUInteger, QNRTSourceKind) { + QNRTSourceKindAudio = 0, + QNRTSourceKindVideo = 1, +}; + +//视频填充模式 +typedef enum { + /** + @brief Stretch to fill the full view, which may distort the image outside of its normal aspect ratio + */ + QNRTVideoFillModeStretch, + + /** + @brief Maintains the aspect ratio of the source image, adding bars of the specified background color + */ + QNRTVideoFillModePreserveAspectRatio, + + /** + @brief Maintains the aspect ratio of the source image, zooming in on its center to fill the view + */ + QNRTVideoFillModePreserveAspectRatioAndFill +} QNRTVideoFillModeType; + + +extern NSString *QNRTStatisticAudioBitrateKey; +extern NSString *QNRTStatisticVideoBitrateKey; +extern NSString *QNRTStatisticVideoFrameRateKey; + + +#endif /* QNRTTypeDefines_h */ diff --git a/Pod/universal/QNRTPlayerKit.framework/Headers/QNRTVideoRender.h b/Pod/universal/QNRTPlayerKit.framework/Headers/QNRTVideoRender.h new file mode 100644 index 0000000..587b447 --- /dev/null +++ b/Pod/universal/QNRTPlayerKit.framework/Headers/QNRTVideoRender.h @@ -0,0 +1,25 @@ +// +// QNRTVideoRender.h +// QNRTPlayerKit +// +// Created by 何云旗 on 2020/12/24. +// + +#import +#import "QNRTVideoView.h" + +NS_ASSUME_NONNULL_BEGIN + +@interface QNRTVideoRender : NSObject + +/** + @brief 对应的 sessionId,由 SDK 内部设置 + */ +@property (nonatomic, strong, readonly) NSString *sessionId; + + +@property (nonatomic, strong) QNRTVideoView *renderView; + +@end + +NS_ASSUME_NONNULL_END diff --git a/Pod/universal/QNRTPlayerKit.framework/Headers/QNRTVideoView.h b/Pod/universal/QNRTPlayerKit.framework/Headers/QNRTVideoView.h new file mode 100644 index 0000000..6387acf --- /dev/null +++ b/Pod/universal/QNRTPlayerKit.framework/Headers/QNRTVideoView.h @@ -0,0 +1,26 @@ +// +// QNRTVideoView.h +// QNRTPlayerKit +// +// Created by 何云旗 on 2020/12/24. +// + +#import +#import "QNRTTypeDefines.h" + +NS_ASSUME_NONNULL_BEGIN + +@interface QNRTVideoView : UIView + +/*! + * @abstract 远端画面的填充方式 + * + * @discussion 当画面与 QNRTVideoView 的比例不一致时,使用的填充方式。默认使用 QNRTVideoFillModePreserveAspectRatioAndFill。 + * + * @since v1.0.0 + */ +@property(nonatomic, assign) QNRTVideoFillModeType fillMode; + +@end + +NS_ASSUME_NONNULL_END diff --git a/Pod/universal/QNRTPlayerKit.framework/Info.plist b/Pod/universal/QNRTPlayerKit.framework/Info.plist new file mode 100644 index 0000000..3d39008 Binary files /dev/null and b/Pod/universal/QNRTPlayerKit.framework/Info.plist differ diff --git a/Pod/universal/QNRTPlayerKit.framework/Modules/module.modulemap b/Pod/universal/QNRTPlayerKit.framework/Modules/module.modulemap new file mode 100644 index 0000000..52bc425 --- /dev/null +++ b/Pod/universal/QNRTPlayerKit.framework/Modules/module.modulemap @@ -0,0 +1,6 @@ +framework module QNRTPlayerKit { + umbrella header "QNRTPlayerKit.h" + + export * + module * { export * } +} diff --git a/Pod/universal/QNRTPlayerKit.framework/QNRTPlayerKit b/Pod/universal/QNRTPlayerKit.framework/QNRTPlayerKit new file mode 100755 index 0000000..e8066ae Binary files /dev/null and b/Pod/universal/QNRTPlayerKit.framework/QNRTPlayerKit differ diff --git a/QNRTNiuLiving/Podfile b/QNRTNiuLiving/Podfile index 19ac19c..10da159 100644 --- a/QNRTNiuLiving/Podfile +++ b/QNRTNiuLiving/Podfile @@ -2,9 +2,8 @@ platform :ios, '9.0' inhibit_all_warnings! target 'QNRTNiuLiving' do + pod "QNRTPlayerKit", :path =>'../QNRTPlayerKit.podspec' pod "PLMediaStreamingKit" pod 'BlocksKit', '2.2.5' - #pod "PLMediaStreamingKit", :podspec => 'https://raw.githubusercontent.com/pili-engineering/PLMediaStreamingKit/master/PLMediaStreamingKit-Universal.podspec' - #pod "PLPlayerKit", :podspec => 'https://raw.githubusercontent.com/pili-engineering/PLPlayerKit/master/PLPlayerKit-Universal.podspec' pod 'Bugsnag', '5.15.4' end diff --git a/QNRTNiuLiving/Podfile.lock b/QNRTNiuLiving/Podfile.lock index 6b2f8a1..2a8957f 100644 --- a/QNRTNiuLiving/Podfile.lock +++ b/QNRTNiuLiving/Podfile.lock @@ -18,11 +18,13 @@ PODS: - PLMediaStreamingKit (3.0.2): - PLMediaStreamingKit/iphoneos (= 3.0.2) - PLMediaStreamingKit/iphoneos (3.0.2) + - QNRTPlayerKit (1.0.0) DEPENDENCIES: - BlocksKit (= 2.2.5) - Bugsnag (= 5.15.4) - PLMediaStreamingKit + - QNRTPlayerKit (from `../QNRTPlayerKit.podspec`) SPEC REPOS: https://github.com/cocoapods/specs.git: @@ -30,11 +32,16 @@ SPEC REPOS: - Bugsnag - PLMediaStreamingKit +EXTERNAL SOURCES: + QNRTPlayerKit: + :path: "../QNRTPlayerKit.podspec" + SPEC CHECKSUMS: BlocksKit: 7f422b971407001178d181a43b99014ea2591fe6 Bugsnag: df1d395695ddf795aa35c23ef4eaef4a04ddcffd PLMediaStreamingKit: 20e0dac77a93e488c8b06bfabf8fdb0fc61f07b5 + QNRTPlayerKit: 8c83ced159ab3c2d9b25ea2cce7a064857c8870e -PODFILE CHECKSUM: e6e428df546856c83ad630a7a2a5ad9e48c2283a +PODFILE CHECKSUM: c44235eadbcf499ee5f7178ce5d0f3280733ea9d COCOAPODS: 1.7.5 diff --git a/QNRTNiuLiving/Pods/Local Podspecs/QNRTPlayerKit.podspec.json b/QNRTNiuLiving/Pods/Local Podspecs/QNRTPlayerKit.podspec.json new file mode 100644 index 0000000..37a0c26 --- /dev/null +++ b/QNRTNiuLiving/Pods/Local Podspecs/QNRTPlayerKit.podspec.json @@ -0,0 +1,29 @@ +{ + "name": "QNRTPlayerKit", + "version": "1.0.0", + "summary": "Pili iOS quic video player SDK, HLS video streaming supported.", + "homepage": "https://github.com/pili-engineering/QNRTPlayer-iOS", + "license": "Apache License, Version 2.0", + "authors": { + "pili": "pili-coresdk@qiniu.com" + }, + "source": { + "http": "https://sdk-release.qnsdk.com/QNRTPlayerKit-iphoneos-v1.0.0.zip" + }, + "platforms": { + "ios": "9.0" + }, + "requires_arc": true, + "vendored_frameworks": [ + "Pod/iphoneos/QNRTPlayerKit.framework" + ], + "frameworks": [ + "UIKit", + "AVFoundation", + "CoreGraphics", + "CFNetwork", + "AudioToolbox", + "CoreMedia", + "VideoToolbox" + ] +} diff --git a/QNRTNiuLiving/Pods/Manifest.lock b/QNRTNiuLiving/Pods/Manifest.lock index 6b2f8a1..2a8957f 100644 --- a/QNRTNiuLiving/Pods/Manifest.lock +++ b/QNRTNiuLiving/Pods/Manifest.lock @@ -18,11 +18,13 @@ PODS: - PLMediaStreamingKit (3.0.2): - PLMediaStreamingKit/iphoneos (= 3.0.2) - PLMediaStreamingKit/iphoneos (3.0.2) + - QNRTPlayerKit (1.0.0) DEPENDENCIES: - BlocksKit (= 2.2.5) - Bugsnag (= 5.15.4) - PLMediaStreamingKit + - QNRTPlayerKit (from `../QNRTPlayerKit.podspec`) SPEC REPOS: https://github.com/cocoapods/specs.git: @@ -30,11 +32,16 @@ SPEC REPOS: - Bugsnag - PLMediaStreamingKit +EXTERNAL SOURCES: + QNRTPlayerKit: + :path: "../QNRTPlayerKit.podspec" + SPEC CHECKSUMS: BlocksKit: 7f422b971407001178d181a43b99014ea2591fe6 Bugsnag: df1d395695ddf795aa35c23ef4eaef4a04ddcffd PLMediaStreamingKit: 20e0dac77a93e488c8b06bfabf8fdb0fc61f07b5 + QNRTPlayerKit: 8c83ced159ab3c2d9b25ea2cce7a064857c8870e -PODFILE CHECKSUM: e6e428df546856c83ad630a7a2a5ad9e48c2283a +PODFILE CHECKSUM: c44235eadbcf499ee5f7178ce5d0f3280733ea9d COCOAPODS: 1.7.5 diff --git a/QNRTNiuLiving/Pods/Pods.xcodeproj/project.pbxproj b/QNRTNiuLiving/Pods/Pods.xcodeproj/project.pbxproj index 513de40..a0d9bbd 100644 --- a/QNRTNiuLiving/Pods/Pods.xcodeproj/project.pbxproj +++ b/QNRTNiuLiving/Pods/Pods.xcodeproj/project.pbxproj @@ -16,6 +16,15 @@ ); name = PLMediaStreamingKit; }; + FAFF1D40A1F3F075D96CE12E7C40342E /* QNRTPlayerKit */ = { + isa = PBXAggregateTarget; + buildConfigurationList = D08FE4744F7A102F6FB4F91BB4C1ECDE /* Build configuration list for PBXAggregateTarget "QNRTPlayerKit" */; + buildPhases = ( + ); + dependencies = ( + ); + name = QNRTPlayerKit; + }; /* End PBXAggregateTarget section */ /* Begin PBXBuildFile section */ @@ -79,6 +88,7 @@ 45B814C647139B9AFE849AEC43AE89AA /* NSOrderedSet+BlocksKit.h in Headers */ = {isa = PBXBuildFile; fileRef = F544A844D6AE72667A57F172D661F931 /* NSOrderedSet+BlocksKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; 45D959E6BE0260DC91E8EE1E32AF943C /* BSG_KSCrashSentry_Deadlock.m in Sources */ = {isa = PBXBuildFile; fileRef = C6D4EA8B613AD7F07EEF03197F85F0CC /* BSG_KSCrashSentry_Deadlock.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 4C33B9C280A92953A4467B3C32061D1D /* BugsnagSessionTrackingPayload.m in Sources */ = {isa = PBXBuildFile; fileRef = C4C12E8DA283E9957956D47F21680736 /* BugsnagSessionTrackingPayload.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 4DE4C93628256B0F82177EFA89628090 /* Pods-QNRTNiuLiving-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 550EFC6F8DB9DBD9FA8D1524A9B8EAC5 /* Pods-QNRTNiuLiving-dummy.m */; }; 4ECE034ED063E52243C682B6702D6261 /* NSObject+A2BlockDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = BE05BB9D4688D684A5BED8C3FB957AF5 /* NSObject+A2BlockDelegate.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 4EF3747FDC6CB2681EEE334A0FA2D0EA /* BSG_KSCrashReportWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 5999A49A8C68E20BBC9BD7CF4A5971B1 /* BSG_KSCrashReportWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5048F075FA25FF298B69176CD277C8BC /* BugsnagErrorReportApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 959B4C2588DE68EAA2A9E4B41D9D993C /* BugsnagErrorReportApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -147,7 +157,6 @@ 9B1E9CAF41282720CB49B08E0B6F6C14 /* NSError+BSG_SimpleConstructor.m in Sources */ = {isa = PBXBuildFile; fileRef = 40C007026FD29652E12BA49176517B56 /* NSError+BSG_SimpleConstructor.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 9CF2822B59AF3F10DC6C8C0DA71ACEB3 /* UIBarButtonItem+BlocksKit.h in Headers */ = {isa = PBXBuildFile; fileRef = D5D5A1D9E672470EF74E42F305A79ABF /* UIBarButtonItem+BlocksKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9D24C2CA342464F72E9645AE9084D6A4 /* BugsnagUser.h in Headers */ = {isa = PBXBuildFile; fileRef = A1980B9B58FA0579BC6E1FC328989F02 /* BugsnagUser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A114D14DDEE89239DA6E9596AF593988 /* Pods-QNRTNiuLiving-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 550EFC6F8DB9DBD9FA8D1524A9B8EAC5 /* Pods-QNRTNiuLiving-dummy.m */; }; A1289CD11846663BD7109185193C4B82 /* BugsnagLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = A8F742CA245B4CE53972A9A50B2BD5F3 /* BugsnagLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; A1C2F729CA67F293EAC4AE77C0DD3201 /* NSOrderedSet+BlocksKit.m in Sources */ = {isa = PBXBuildFile; fileRef = A5F1AC159F3B9896C7C7B52AC2CED3D8 /* NSOrderedSet+BlocksKit.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; A2DEE566030C77DF1397A3C1FB6A16FA /* BugsnagSessionTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC0C93B9EB2D76E192D487605704865 /* BugsnagSessionTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -224,21 +233,28 @@ /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 3CB299B482B0995C43136B802D8DA28C /* PBXContainerItemProxy */ = { + 17A8EA616E0BD0370F0D9D06674060DD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = BDC8B0769B39E03BE257939D6FD4D966; remoteInfo = Bugsnag; }; - 864E0B24ECF7A2E3DDB4AF8DFC94D714 /* PBXContainerItemProxy */ = { + 3FA8803382C3004A64D58DECC7CE7E4E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FAFF1D40A1F3F075D96CE12E7C40342E; + remoteInfo = QNRTPlayerKit; + }; + E1FC72A998FC1992DA18A9C1E561860A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = B2777DC549C19A310651FBD3C87B71DF; remoteInfo = BlocksKit; }; - BA0781CECA11D18C5874BFDC375956A5 /* PBXContainerItemProxy */ = { + ECCE42C8F5907C1121593199AC19C006 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; @@ -255,9 +271,11 @@ 012502B21D00E79634B79EAA443D070E /* NSObject+BKBlockObservation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+BKBlockObservation.m"; path = "BlocksKit/Core/NSObject+BKBlockObservation.m"; sourceTree = ""; }; 02CCCACB697F4498321B09BAB881D175 /* BugsnagBreadcrumb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BugsnagBreadcrumb.h; path = Source/BugsnagBreadcrumb.h; sourceTree = ""; }; 03499BB2F332576A8EB0BAEBB45E11B6 /* BSG_KSBacktrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BSG_KSBacktrace.h; path = Source/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSBacktrace.h; sourceTree = ""; }; + 06D5F82296474044E154C32AF5F83697 /* QNRTPlayerKit.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = QNRTPlayerKit.xcconfig; sourceTree = ""; }; 087218A9F3E3B57EDCA1EF8DC715240B /* BugsnagCollections.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BugsnagCollections.m; path = Source/BugsnagCollections.m; sourceTree = ""; }; 0B705E83AC64555B1A834865E8EA8409 /* libPods-QNRTNiuLiving.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-QNRTNiuLiving.a"; path = "libPods-QNRTNiuLiving.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 0C119E78B1AFA942E25D85295444D035 /* A2BlockInvocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = A2BlockInvocation.h; path = BlocksKit/DynamicDelegate/A2BlockInvocation.h; sourceTree = ""; }; + 0C3A4AEA5CDC67CA52CDCC5D4C33BBA7 /* QNRTPlayerKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QNRTPlayerKit.framework; path = Pod/iphoneos/QNRTPlayerKit.framework; sourceTree = ""; }; 0DD6EE8A55257E73E3D8C09A4002BC56 /* BSG_KSCrashSentry_Signal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BSG_KSCrashSentry_Signal.h; path = Source/KSCrash/Source/KSCrash/Recording/Sentry/BSG_KSCrashSentry_Signal.h; sourceTree = ""; }; 0F915521F5330764223B2874DBC9C6D5 /* BugsnagErrorReportApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BugsnagErrorReportApiClient.m; path = Source/BugsnagErrorReportApiClient.m; sourceTree = ""; }; 117826680A04061DEFC13F144AF20A48 /* BugsnagCollections.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BugsnagCollections.h; path = Source/BugsnagCollections.h; sourceTree = ""; }; @@ -382,6 +400,7 @@ 97AFBB9BB441C5376869B32D4E7ADE75 /* BSG_KSSafeCollections.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BSG_KSSafeCollections.h; path = Source/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSSafeCollections.h; sourceTree = ""; }; 981523BD65143910917EAA07F100C422 /* UIGestureRecognizer+BlocksKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIGestureRecognizer+BlocksKit.h"; path = "BlocksKit/UIKit/UIGestureRecognizer+BlocksKit.h"; sourceTree = ""; }; 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 9EA7ED98EF670EB83217753ADC6001CA /* QNRTPlayerKit.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = QNRTPlayerKit.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; A0DC37541DBD5C26D5608ADCB8E6BE6C /* BSG_KSCrashC.c */ = {isa = PBXFileReference; includeInIndex = 1; name = BSG_KSCrashC.c; path = Source/KSCrash/Source/KSCrash/Recording/BSG_KSCrashC.c; sourceTree = ""; }; A11DD977BDD28F2B6996DB4DBAEC9C43 /* NSTimer+BlocksKit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSTimer+BlocksKit.m"; path = "BlocksKit/Core/NSTimer+BlocksKit.m"; sourceTree = ""; }; A1980B9B58FA0579BC6E1FC328989F02 /* BugsnagUser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BugsnagUser.h; path = Source/BugsnagUser.h; sourceTree = ""; }; @@ -469,7 +488,7 @@ /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ - 37FFCB5007BAAD143D38312525C80241 /* Frameworks */ = { + 2639A7E66E823E0C2DD7FD22359C0F36 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -493,6 +512,14 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ + 004E3EA6BAA54A1A0A569562E768FFC1 /* Frameworks */ = { + isa = PBXGroup; + children = ( + 0C3A4AEA5CDC67CA52CDCC5D4C33BBA7 /* QNRTPlayerKit.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; 15B99829C818EED5CE2751812B73AFDA /* Bugsnag */ = { isa = PBXGroup; children = ( @@ -682,6 +709,17 @@ path = BlocksKit; sourceTree = ""; }; + 3F39B2EA2BC665687ECAB5B58494BF98 /* QNRTPlayerKit */ = { + isa = PBXGroup; + children = ( + 004E3EA6BAA54A1A0A569562E768FFC1 /* Frameworks */, + AFD5B21751AD7F3915FB8C96523DA395 /* Pod */, + 4E9AF035A8ECBF477EA3E32DB2F07FB6 /* Support Files */, + ); + name = QNRTPlayerKit; + path = ../..; + sourceTree = ""; + }; 466886A1B46DA10D6B2406C03B3801CF /* Pods */ = { isa = PBXGroup; children = ( @@ -692,6 +730,15 @@ name = Pods; sourceTree = ""; }; + 4E9AF035A8ECBF477EA3E32DB2F07FB6 /* Support Files */ = { + isa = PBXGroup; + children = ( + 06D5F82296474044E154C32AF5F83697 /* QNRTPlayerKit.xcconfig */, + ); + name = "Support Files"; + path = "QNRTNiuLiving/Pods/Target Support Files/QNRTPlayerKit"; + sourceTree = ""; + }; 5C4214E3986AE68C50F78F2A6C1C1BA6 /* Targets Support Files */ = { isa = PBXGroup; children = ( @@ -746,6 +793,14 @@ path = "Target Support Files/Pods-QNRTNiuLiving"; sourceTree = ""; }; + AFD5B21751AD7F3915FB8C96523DA395 /* Pod */ = { + isa = PBXGroup; + children = ( + 9EA7ED98EF670EB83217753ADC6001CA /* QNRTPlayerKit.podspec */, + ); + name = Pod; + sourceTree = ""; + }; BBE5A7258D378A8ADF66E3F6D26345E1 /* Support Files */ = { isa = PBXGroup; children = ( @@ -780,6 +835,7 @@ isa = PBXGroup; children = ( 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, + E680454E590AC2DE79066705B5C84709 /* Development Pods */, D89477F20FB1DE18A04690586D7808C4 /* Frameworks */, 466886A1B46DA10D6B2406C03B3801CF /* Pods */, 2A8DBFF50AFDD1462F5430CDD322A10B /* Products */, @@ -813,6 +869,14 @@ name = Frameworks; sourceTree = ""; }; + E680454E590AC2DE79066705B5C84709 /* Development Pods */ = { + isa = PBXGroup; + children = ( + 3F39B2EA2BC665687ECAB5B58494BF98 /* QNRTPlayerKit */, + ); + name = "Development Pods"; + sourceTree = ""; + }; ED36F9F0AC17766A46368F255D2E7363 /* Core */ = { isa = PBXGroup; children = ( @@ -863,7 +927,7 @@ /* End PBXGroup section */ /* Begin PBXHeadersBuildPhase section */ - 64C0FBAC30C4F8C20307E9F234B80A51 /* Headers */ = { + 864257ECFE6FC505E13D2E259C1FB331 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( @@ -997,18 +1061,19 @@ /* Begin PBXNativeTarget section */ 94BA3793A3B2CD20C691ABED965322AE /* Pods-QNRTNiuLiving */ = { isa = PBXNativeTarget; - buildConfigurationList = 0CFED4D068463C8A5FE1C3C606BE21F1 /* Build configuration list for PBXNativeTarget "Pods-QNRTNiuLiving" */; + buildConfigurationList = B85D35DA34C216247D3B92AA8D3BC76B /* Build configuration list for PBXNativeTarget "Pods-QNRTNiuLiving" */; buildPhases = ( - 64C0FBAC30C4F8C20307E9F234B80A51 /* Headers */, - 3125DFCAEA6322866D826A62BC5BFF1D /* Sources */, - 37FFCB5007BAAD143D38312525C80241 /* Frameworks */, + 864257ECFE6FC505E13D2E259C1FB331 /* Headers */, + D1C9E05B0B5610D2B1304EA32A9DFCB4 /* Sources */, + 2639A7E66E823E0C2DD7FD22359C0F36 /* Frameworks */, ); buildRules = ( ); dependencies = ( - D595EE950A242239514308B6A32C6836 /* PBXTargetDependency */, - 16FBCA1B4F8D71F344EC32461EE9956E /* PBXTargetDependency */, - 22DCD18F2CDEB4F096C2B037A8FC077F /* PBXTargetDependency */, + 77BC892972D3F92E7DEC3AD80E31B996 /* PBXTargetDependency */, + AB83CF4A0995A25BAC8769C2D00184FE /* PBXTargetDependency */, + 539534C15A84639F552EC73EEC408C28 /* PBXTargetDependency */, + 2E79316AED11353BA3F6CECED2C308CA /* PBXTargetDependency */, ); name = "Pods-QNRTNiuLiving"; productName = "Pods-QNRTNiuLiving"; @@ -1074,19 +1139,12 @@ BDC8B0769B39E03BE257939D6FD4D966 /* Bugsnag */, 3CBC146F23FC3E26238A7B4DEA2FBBFF /* PLMediaStreamingKit */, 94BA3793A3B2CD20C691ABED965322AE /* Pods-QNRTNiuLiving */, + FAFF1D40A1F3F075D96CE12E7C40342E /* QNRTPlayerKit */, ); }; /* End PBXProject section */ /* Begin PBXSourcesBuildPhase section */ - 3125DFCAEA6322866D826A62BC5BFF1D /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - A114D14DDEE89239DA6E9596AF593988 /* Pods-QNRTNiuLiving-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 43075EC796CAE062D497E4C7336D6BC3 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -1194,26 +1252,40 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + D1C9E05B0B5610D2B1304EA32A9DFCB4 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 4DE4C93628256B0F82177EFA89628090 /* Pods-QNRTNiuLiving-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 16FBCA1B4F8D71F344EC32461EE9956E /* PBXTargetDependency */ = { + 2E79316AED11353BA3F6CECED2C308CA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Bugsnag; - target = BDC8B0769B39E03BE257939D6FD4D966 /* Bugsnag */; - targetProxy = 3CB299B482B0995C43136B802D8DA28C /* PBXContainerItemProxy */; + name = QNRTPlayerKit; + target = FAFF1D40A1F3F075D96CE12E7C40342E /* QNRTPlayerKit */; + targetProxy = 3FA8803382C3004A64D58DECC7CE7E4E /* PBXContainerItemProxy */; }; - 22DCD18F2CDEB4F096C2B037A8FC077F /* PBXTargetDependency */ = { + 539534C15A84639F552EC73EEC408C28 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = PLMediaStreamingKit; target = 3CBC146F23FC3E26238A7B4DEA2FBBFF /* PLMediaStreamingKit */; - targetProxy = BA0781CECA11D18C5874BFDC375956A5 /* PBXContainerItemProxy */; + targetProxy = ECCE42C8F5907C1121593199AC19C006 /* PBXContainerItemProxy */; }; - D595EE950A242239514308B6A32C6836 /* PBXTargetDependency */ = { + 77BC892972D3F92E7DEC3AD80E31B996 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = BlocksKit; target = B2777DC549C19A310651FBD3C87B71DF /* BlocksKit */; - targetProxy = 864E0B24ECF7A2E3DDB4AF8DFC94D714 /* PBXContainerItemProxy */; + targetProxy = E1FC72A998FC1992DA18A9C1E561860A /* PBXContainerItemProxy */; + }; + AB83CF4A0995A25BAC8769C2D00184FE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Bugsnag; + target = BDC8B0769B39E03BE257939D6FD4D966 /* Bugsnag */; + targetProxy = 17A8EA616E0BD0370F0D9D06674060DD /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ @@ -1242,28 +1314,6 @@ }; name = Release; }; - 32C3666E05ABEEA72BA991E16A45753A /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = F1225EF7EBB2989FA36DE3C1606B01B0 /* Pods-QNRTNiuLiving.release.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - MACH_O_TYPE = staticlib; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; 4606003779F33C9F4A6D3A6D9B186926 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 21D867ABD44851ADC3BAB508913FAD49 /* Bugsnag.xcconfig */; @@ -1315,27 +1365,6 @@ }; name = Release; }; - 5530176D11C8CE2E2093DAA71417BE67 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = E4790B4DD07624C0141110579C7E7C95 /* Pods-QNRTNiuLiving.debug.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - MACH_O_TYPE = staticlib; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; 8F17DC3A99F99FBAD606CE6963886315 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { @@ -1460,6 +1489,76 @@ }; name = Debug; }; + 975D308044270E90CC31BFBE06705BCE /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 06D5F82296474044E154C32AF5F83697 /* QNRTPlayerKit.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + A80DA5B42737D1F9305BD6CB9353D2AF /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 06D5F82296474044E154C32AF5F83697 /* QNRTPlayerKit.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + ABDB70A8D027CE81BC39F683C5830D7E /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = E4790B4DD07624C0141110579C7E7C95 /* Pods-QNRTNiuLiving.debug.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + MACH_O_TYPE = staticlib; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + B26BD7F10ACEB49811E3516CCB1A5233 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = F1225EF7EBB2989FA36DE3C1606B01B0 /* Pods-QNRTNiuLiving.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + MACH_O_TYPE = staticlib; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; DC32D64519D075BA11E0D9B8797B5158 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 21D867ABD44851ADC3BAB508913FAD49 /* Bugsnag.xcconfig */; @@ -1509,15 +1608,6 @@ /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ - 0CFED4D068463C8A5FE1C3C606BE21F1 /* Build configuration list for PBXNativeTarget "Pods-QNRTNiuLiving" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 5530176D11C8CE2E2093DAA71417BE67 /* Debug */, - 32C3666E05ABEEA72BA991E16A45753A /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 0EB7ADD2263DA698B0FC8AEF4919D2CB /* Build configuration list for PBXAggregateTarget "PLMediaStreamingKit" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -1554,6 +1644,24 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + B85D35DA34C216247D3B92AA8D3BC76B /* Build configuration list for PBXNativeTarget "Pods-QNRTNiuLiving" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + ABDB70A8D027CE81BC39F683C5830D7E /* Debug */, + B26BD7F10ACEB49811E3516CCB1A5233 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + D08FE4744F7A102F6FB4F91BB4C1ECDE /* Build configuration list for PBXAggregateTarget "QNRTPlayerKit" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + A80DA5B42737D1F9305BD6CB9353D2AF /* Debug */, + 975D308044270E90CC31BFBE06705BCE /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; /* End XCConfigurationList section */ }; rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */; diff --git a/QNRTNiuLiving/Pods/Pods.xcodeproj/xcuserdata/AaronHe.xcuserdatad/xcschemes/QNRTPlayerKit.xcscheme b/QNRTNiuLiving/Pods/Pods.xcodeproj/xcuserdata/AaronHe.xcuserdatad/xcschemes/QNRTPlayerKit.xcscheme new file mode 100644 index 0000000..f235c13 --- /dev/null +++ b/QNRTNiuLiving/Pods/Pods.xcodeproj/xcuserdata/AaronHe.xcuserdatad/xcschemes/QNRTPlayerKit.xcscheme @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/QNRTNiuLiving/Pods/Pods.xcodeproj/xcuserdata/AaronHe.xcuserdatad/xcschemes/xcschememanagement.plist b/QNRTNiuLiving/Pods/Pods.xcodeproj/xcuserdata/AaronHe.xcuserdatad/xcschemes/xcschememanagement.plist index a35bd17..be4a3a0 100644 --- a/QNRTNiuLiving/Pods/Pods.xcodeproj/xcuserdata/AaronHe.xcuserdatad/xcschemes/xcschememanagement.plist +++ b/QNRTNiuLiving/Pods/Pods.xcodeproj/xcuserdata/AaronHe.xcuserdatad/xcschemes/xcschememanagement.plist @@ -24,6 +24,11 @@ isShown + QNRTPlayerKit.xcscheme + + isShown + + SuppressBuildableAutocreation diff --git a/QNRTNiuLiving/Pods/Target Support Files/Pods-QNRTNiuLiving/Pods-QNRTNiuLiving-acknowledgements.markdown b/QNRTNiuLiving/Pods/Target Support Files/Pods-QNRTNiuLiving/Pods-QNRTNiuLiving-acknowledgements.markdown index d028b2f..49ba859 100644 --- a/QNRTNiuLiving/Pods/Target Support Files/Pods-QNRTNiuLiving/Pods-QNRTNiuLiving-acknowledgements.markdown +++ b/QNRTNiuLiving/Pods/Target Support Files/Pods-QNRTNiuLiving/Pods-QNRTNiuLiving-acknowledgements.markdown @@ -38,4 +38,209 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +## QNRTPlayerKit + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + Generated by CocoaPods - https://cocoapods.org diff --git a/QNRTNiuLiving/Pods/Target Support Files/Pods-QNRTNiuLiving/Pods-QNRTNiuLiving-acknowledgements.plist b/QNRTNiuLiving/Pods/Target Support Files/Pods-QNRTNiuLiving/Pods-QNRTNiuLiving-acknowledgements.plist index 945b603..d464215 100644 --- a/QNRTNiuLiving/Pods/Target Support Files/Pods-QNRTNiuLiving/Pods-QNRTNiuLiving-acknowledgements.plist +++ b/QNRTNiuLiving/Pods/Target Support Files/Pods-QNRTNiuLiving/Pods-QNRTNiuLiving-acknowledgements.plist @@ -62,6 +62,217 @@ THE SOFTWARE. Type PSGroupSpecifier + + FooterText + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + License + Apache License, Version 2.0 + Title + QNRTPlayerKit + Type + PSGroupSpecifier + FooterText Generated by CocoaPods - https://cocoapods.org diff --git a/QNRTNiuLiving/Pods/Target Support Files/Pods-QNRTNiuLiving/Pods-QNRTNiuLiving-frameworks.sh b/QNRTNiuLiving/Pods/Target Support Files/Pods-QNRTNiuLiving/Pods-QNRTNiuLiving-frameworks.sh index fd21d2c..9f8eb17 100755 --- a/QNRTNiuLiving/Pods/Target Support Files/Pods-QNRTNiuLiving/Pods-QNRTNiuLiving-frameworks.sh +++ b/QNRTNiuLiving/Pods/Target Support Files/Pods-QNRTNiuLiving/Pods-QNRTNiuLiving-frameworks.sh @@ -163,10 +163,12 @@ strip_invalid_archs() { if [[ "$CONFIGURATION" == "Debug" ]]; then install_framework "${PODS_ROOT}/PLMediaStreamingKit/Pod/Library/PLMediaStreamingKit.framework" install_framework "${PODS_ROOT}/PLMediaStreamingKit/Pod/Library/HappyDNS.framework" + install_framework "${PODS_ROOT}/../../Pod/iphoneos/QNRTPlayerKit.framework" fi if [[ "$CONFIGURATION" == "Release" ]]; then install_framework "${PODS_ROOT}/PLMediaStreamingKit/Pod/Library/PLMediaStreamingKit.framework" install_framework "${PODS_ROOT}/PLMediaStreamingKit/Pod/Library/HappyDNS.framework" + install_framework "${PODS_ROOT}/../../Pod/iphoneos/QNRTPlayerKit.framework" fi if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then wait diff --git a/QNRTNiuLiving/Pods/Target Support Files/Pods-QNRTNiuLiving/Pods-QNRTNiuLiving.debug.xcconfig b/QNRTNiuLiving/Pods/Target Support Files/Pods-QNRTNiuLiving/Pods-QNRTNiuLiving.debug.xcconfig index b24f8d5..7b2b278 100644 --- a/QNRTNiuLiving/Pods/Target Support Files/Pods-QNRTNiuLiving/Pods-QNRTNiuLiving.debug.xcconfig +++ b/QNRTNiuLiving/Pods/Target Support Files/Pods-QNRTNiuLiving/Pods-QNRTNiuLiving.debug.xcconfig @@ -1,10 +1,10 @@ -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/PLMediaStreamingKit/Pod/Library" +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/../../Pod/iphoneos" "${PODS_ROOT}/PLMediaStreamingKit/Pod/Library" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BlocksKit" "${PODS_ROOT}/Headers/Public/Bugsnag" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BlocksKit" "${PODS_CONFIGURATION_BUILD_DIR}/Bugsnag" -OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/BlocksKit" -isystem "${PODS_ROOT}/Headers/Public/Bugsnag" -iframework "${PODS_ROOT}/PLMediaStreamingKit/Pod/Library" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BlocksKit" -l"Bugsnag" -l"c++" -l"icucore" -l"sqlite3" -l"z" -framework "AVFoundation" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreGraphics" -framework "CoreMedia" -framework "Foundation" -framework "HappyDNS" -framework "MessageUI" -framework "PLMediaStreamingKit" -framework "SystemConfiguration" -framework "UIKit" -framework "VideoToolbox" +OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/BlocksKit" -isystem "${PODS_ROOT}/Headers/Public/Bugsnag" -iframework "${PODS_ROOT}/PLMediaStreamingKit/Pod/Library" -iframework "${PODS_ROOT}/../../Pod/iphoneos" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BlocksKit" -l"Bugsnag" -l"c++" -l"icucore" -l"sqlite3" -l"z" -framework "AVFoundation" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreGraphics" -framework "CoreMedia" -framework "Foundation" -framework "HappyDNS" -framework "MessageUI" -framework "PLMediaStreamingKit" -framework "QNRTPlayerKit" -framework "SystemConfiguration" -framework "UIKit" -framework "VideoToolbox" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_PODFILE_DIR_PATH = ${SRCROOT}/. diff --git a/QNRTNiuLiving/Pods/Target Support Files/Pods-QNRTNiuLiving/Pods-QNRTNiuLiving.release.xcconfig b/QNRTNiuLiving/Pods/Target Support Files/Pods-QNRTNiuLiving/Pods-QNRTNiuLiving.release.xcconfig index b24f8d5..7b2b278 100644 --- a/QNRTNiuLiving/Pods/Target Support Files/Pods-QNRTNiuLiving/Pods-QNRTNiuLiving.release.xcconfig +++ b/QNRTNiuLiving/Pods/Target Support Files/Pods-QNRTNiuLiving/Pods-QNRTNiuLiving.release.xcconfig @@ -1,10 +1,10 @@ -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/PLMediaStreamingKit/Pod/Library" +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/../../Pod/iphoneos" "${PODS_ROOT}/PLMediaStreamingKit/Pod/Library" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BlocksKit" "${PODS_ROOT}/Headers/Public/Bugsnag" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BlocksKit" "${PODS_CONFIGURATION_BUILD_DIR}/Bugsnag" -OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/BlocksKit" -isystem "${PODS_ROOT}/Headers/Public/Bugsnag" -iframework "${PODS_ROOT}/PLMediaStreamingKit/Pod/Library" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BlocksKit" -l"Bugsnag" -l"c++" -l"icucore" -l"sqlite3" -l"z" -framework "AVFoundation" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreGraphics" -framework "CoreMedia" -framework "Foundation" -framework "HappyDNS" -framework "MessageUI" -framework "PLMediaStreamingKit" -framework "SystemConfiguration" -framework "UIKit" -framework "VideoToolbox" +OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/BlocksKit" -isystem "${PODS_ROOT}/Headers/Public/Bugsnag" -iframework "${PODS_ROOT}/PLMediaStreamingKit/Pod/Library" -iframework "${PODS_ROOT}/../../Pod/iphoneos" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BlocksKit" -l"Bugsnag" -l"c++" -l"icucore" -l"sqlite3" -l"z" -framework "AVFoundation" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreGraphics" -framework "CoreMedia" -framework "Foundation" -framework "HappyDNS" -framework "MessageUI" -framework "PLMediaStreamingKit" -framework "QNRTPlayerKit" -framework "SystemConfiguration" -framework "UIKit" -framework "VideoToolbox" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_PODFILE_DIR_PATH = ${SRCROOT}/. diff --git a/QNRTNiuLiving/Pods/Target Support Files/QNRTPlayerKit/QNRTPlayerKit.xcconfig b/QNRTNiuLiving/Pods/Target Support Files/QNRTPlayerKit/QNRTPlayerKit.xcconfig new file mode 100644 index 0000000..b16fcb5 --- /dev/null +++ b/QNRTNiuLiving/Pods/Target Support Files/QNRTPlayerKit/QNRTPlayerKit.xcconfig @@ -0,0 +1,9 @@ +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/QNRTPlayerKit +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/../../Pod/iphoneos" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/../.. +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES diff --git a/QNRTNiuLiving/QNRTNiuLiving.xcodeproj/project.pbxproj b/QNRTNiuLiving/QNRTNiuLiving.xcodeproj/project.pbxproj index 401a64a..e703b94 100644 --- a/QNRTNiuLiving/QNRTNiuLiving.xcodeproj/project.pbxproj +++ b/QNRTNiuLiving/QNRTNiuLiving.xcodeproj/project.pbxproj @@ -131,8 +131,6 @@ 9C1EFEFE259B1E17000C7AC3 /* volume@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 9C1EFEEF259B1E16000C7AC3 /* volume@3x.png */; }; 9C1EFEFF259B1E17000C7AC3 /* show@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 9C1EFEF0259B1E16000C7AC3 /* show@2x.png */; }; 9C1EFF00259B1E17000C7AC3 /* hide@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 9C1EFEF1259B1E17000C7AC3 /* hide@3x.png */; }; - 9CF0002725B1982C0028C82F /* QNRTPlayerKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9CF0001925B196990028C82F /* QNRTPlayerKit.framework */; }; - 9CF0002825B1982C0028C82F /* QNRTPlayerKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 9CF0001925B196990028C82F /* QNRTPlayerKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; F86D05A7F2A5E31A3FF4CCD0 /* libPods-QNRTNiuLiving.a in Frameworks */ = {isa = PBXBuildFile; fileRef = C0A08C52E401C86F337AB19B /* libPods-QNRTNiuLiving.a */; }; /* End PBXBuildFile section */ @@ -153,7 +151,6 @@ dstPath = ""; dstSubfolderSpec = 10; files = ( - 9CF0002825B1982C0028C82F /* QNRTPlayerKit.framework in Embed Frameworks */, ); name = "Embed Frameworks"; runOnlyForDeploymentPostprocessing = 0; @@ -304,7 +301,6 @@ 9C1EFEF0259B1E16000C7AC3 /* show@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "show@2x.png"; sourceTree = ""; }; 9C1EFEF1259B1E17000C7AC3 /* hide@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "hide@3x.png"; sourceTree = ""; }; 9CA684F325A44E0B00DA5200 /* GLKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GLKit.framework; path = System/Library/Frameworks/GLKit.framework; sourceTree = SDKROOT; }; - 9CF0001925B196990028C82F /* QNRTPlayerKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QNRTPlayerKit.framework; path = ../Pod/iphoneos/QNRTPlayerKit.framework; sourceTree = ""; }; C0A08C52E401C86F337AB19B /* libPods-QNRTNiuLiving.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-QNRTNiuLiving.a"; sourceTree = BUILT_PRODUCTS_DIR; }; C8D35AB23593AD379F4FE54F /* Pods-QNRTNiuLiving.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-QNRTNiuLiving.debug.xcconfig"; path = "Pods/Target Support Files/Pods-QNRTNiuLiving/Pods-QNRTNiuLiving.debug.xcconfig"; sourceTree = ""; }; /* End PBXFileReference section */ @@ -315,7 +311,6 @@ buildActionMask = 2147483647; files = ( F86D05A7F2A5E31A3FF4CCD0 /* libPods-QNRTNiuLiving.a in Frameworks */, - 9CF0002725B1982C0028C82F /* QNRTPlayerKit.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -341,7 +336,6 @@ 93032F9420562FC4009E5F9D = { isa = PBXGroup; children = ( - 9CF0001925B196990028C82F /* QNRTPlayerKit.framework */, 93032F9F20562FC4009E5F9D /* QNRTNiuLiving */, 93032FB820562FC4009E5F9D /* QNRTNiuLivingUITests */, 93032F9E20562FC4009E5F9D /* Products */, @@ -773,11 +767,13 @@ "${PODS_ROOT}/Target Support Files/Pods-QNRTNiuLiving/Pods-QNRTNiuLiving-frameworks.sh", "${PODS_ROOT}/PLMediaStreamingKit/Pod/Library/PLMediaStreamingKit.framework", "${PODS_ROOT}/PLMediaStreamingKit/Pod/Library/HappyDNS.framework", + "${PODS_ROOT}/../../Pod/iphoneos/QNRTPlayerKit.framework", ); name = "[CP] Embed Pods Frameworks"; outputPaths = ( "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/PLMediaStreamingKit.framework", "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/HappyDNS.framework", + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/QNRTPlayerKit.framework", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; @@ -989,7 +985,7 @@ CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1.0; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - DEVELOPMENT_TEAM = W2TP34G2MM; + DEVELOPMENT_TEAM = GDFHW66V92; ENABLE_BITCODE = NO; FRAMEWORK_SEARCH_PATHS = ( "$(inherited)", @@ -1017,7 +1013,7 @@ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1.0; - DEVELOPMENT_TEAM = W2TP34G2MM; + DEVELOPMENT_TEAM = GDFHW66V92; ENABLE_BITCODE = NO; FRAMEWORK_SEARCH_PATHS = ( "$(inherited)", diff --git a/QNRTNiuLiving/QNRTNiuLiving.xcworkspace/xcuserdata/AaronHe.xcuserdatad/UserInterfaceState.xcuserstate b/QNRTNiuLiving/QNRTNiuLiving.xcworkspace/xcuserdata/AaronHe.xcuserdatad/UserInterfaceState.xcuserstate index 6eea0d4..72dbf03 100644 Binary files a/QNRTNiuLiving/QNRTNiuLiving.xcworkspace/xcuserdata/AaronHe.xcuserdatad/UserInterfaceState.xcuserstate and b/QNRTNiuLiving/QNRTNiuLiving.xcworkspace/xcuserdata/AaronHe.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/QNRTPlayerKit-Universal.podspec b/QNRTPlayerKit-Universal.podspec new file mode 100644 index 0000000..a65faea --- /dev/null +++ b/QNRTPlayerKit-Universal.podspec @@ -0,0 +1,27 @@ +# +# Be sure to run `pod lib lint QNRTPlayerKit.podspec' to ensure this is a +# valid spec and remove all comments before submitting the spec. +# +# Any lines starting with a # are optional, but encouraged +# +# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html +# + +Pod::Spec.new do |s| + s.name = "QNRTPlayerKit" + s.version = "1.0.0" + s.summary = "Pili iOS quic video player SDK, HLS video streaming supported." + s.homepage = "https://github.com/pili-engineering/QNRTPlayer-iOS" + s.license = 'Apache License, Version 2.0' + s.author = { "pili" => "pili-coresdk@qiniu.com" } + s.source = { :http => "https://sdk-release.qnsdk.com/QNRTPlayerKit-universal-v1.0.0.zip" } + + s.platform = :ios + s.ios.deployment_target = '9.0' + s.requires_arc = true + + s.vendored_frameworks = ['Pod/universal/QNRTPlayerKit.framework'] + + s.frameworks = ['UIKit', 'AVFoundation', 'CoreGraphics', 'CFNetwork', 'AudioToolbox', 'CoreMedia', 'VideoToolbox'] + +end diff --git a/QNRTPlayerKit.podspec b/QNRTPlayerKit.podspec new file mode 100644 index 0000000..9ba66d9 --- /dev/null +++ b/QNRTPlayerKit.podspec @@ -0,0 +1,27 @@ +# +# Be sure to run `pod lib lint QNRTPlayerKit.podspec' to ensure this is a +# valid spec and remove all comments before submitting the spec. +# +# Any lines starting with a # are optional, but encouraged +# +# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html +# + +Pod::Spec.new do |s| + s.name = "QNRTPlayerKit" + s.version = "1.0.0" + s.summary = "Pili iOS quic video player SDK, HLS video streaming supported." + s.homepage = "https://github.com/pili-engineering/QNRTPlayer-iOS" + s.license = 'Apache License, Version 2.0' + s.author = { "pili" => "pili-coresdk@qiniu.com" } + s.source = { :http => "https://sdk-release.qnsdk.com/QNRTPlayerKit-iphoneos-v1.0.0.zip" } + + s.platform = :ios + s.ios.deployment_target = '9.0' + s.requires_arc = true + + s.vendored_frameworks = ['Pod/iphoneos/QNRTPlayerKit.framework'] + + s.frameworks = ['UIKit', 'AVFoundation', 'CoreGraphics', 'CFNetwork', 'AudioToolbox', 'CoreMedia', 'VideoToolbox'] + +end diff --git a/README.md b/README.md index 30de718..01ebc8b 100644 --- a/README.md +++ b/README.md @@ -51,6 +51,9 @@ pod "QNRTPlayerKit", :podspec => 'https://raw.githubusercontent.com/pili-enginee $ pod install ``` +# QNRTPlayer 文档 +请参考[官方文档](https://developer.qiniu.com/pili/7732/geek-ios-sdk) + ## 反馈及意见 当你遇到任何问题时,可以通过在 GitHub 的 repo 提交 issues 来反馈问题,请尽可能的描述清楚遇到的问题,如果有错误信息也一同附带,并且在 Labels 中指明类型为 bug 或者其他。