Commit 3e00c2fe9a7e888ecabe06e3673b966ad246c89b
1 parent
0a580f67
0.0.7
Showing
11 changed files
with
91 additions
and
10 deletions
Too many changes to show.
To preserve performance only 11 of 30 files are displayed.
CNLiveDisease.podspec
| 1 | 1 | ||
| 2 | Pod::Spec.new do |s| | 2 | Pod::Spec.new do |s| |
| 3 | s.name = 'CNLiveDisease' | 3 | s.name = 'CNLiveDisease' |
| 4 | - s.version = '0.0.6' | 4 | + s.version = '0.0.7' |
| 5 | s.summary = '智慧农业部分组件化' | 5 | s.summary = '智慧农业部分组件化' |
| 6 | 6 | ||
| 7 | s.description = <<-DESC | 7 | s.description = <<-DESC |
| @@ -34,4 +34,5 @@ TODO: Add long description of the pod here. | @@ -34,4 +34,5 @@ TODO: Add long description of the pod here. | ||
| 34 | # s.dependency 'CNLiveUploadManager' | 34 | # s.dependency 'CNLiveUploadManager' |
| 35 | # s.ios.vendored_library = 'CNLiveUploadManager' | 35 | # s.ios.vendored_library = 'CNLiveUploadManager' |
| 36 | s.dependency 'FLAnimatedImage' | 36 | s.dependency 'FLAnimatedImage' |
| 37 | + s.dependency 'CNLiveCoreMediator' | ||
| 37 | end | 38 | end |
CNLiveDisease/Classes/Actions/CNLiveTarget_A.h
0 → 100644
| 1 | +// | ||
| 2 | +// CNLiveTarget_A.h | ||
| 3 | +// CNLiveDisease | ||
| 4 | +// | ||
| 5 | +// Created by 殷巧娟 on 2019/1/25. | ||
| 6 | +// | ||
| 7 | + | ||
| 8 | +#import <Foundation/Foundation.h> | ||
| 9 | +#import "CNLiveDiseaseController.h" | ||
| 10 | +NS_ASSUME_NONNULL_BEGIN | ||
| 11 | + | ||
| 12 | +@interface CNLiveTarget_A : NSObject | ||
| 13 | +-(UIViewController *)Action_ViewController:(NSDictionary *)params; | ||
| 14 | +@end | ||
| 15 | + | ||
| 16 | +NS_ASSUME_NONNULL_END |
CNLiveDisease/Classes/Actions/CNLiveTarget_A.m
0 → 100644
| 1 | +// | ||
| 2 | +// CNLiveTarget_A.m | ||
| 3 | +// CNLiveDisease | ||
| 4 | +// | ||
| 5 | +// Created by 殷巧娟 on 2019/1/25. | ||
| 6 | +// | ||
| 7 | + | ||
| 8 | +#import "CNLiveTarget_A.h" | ||
| 9 | + | ||
| 10 | +@implementation CNLiveTarget_A | ||
| 11 | +-(UIViewController *)Action_ViewController:(NSDictionary *)params { | ||
| 12 | + CNLiveDiseaseController *vc = [[CNLiveDiseaseController alloc]init]; | ||
| 13 | + return vc; | ||
| 14 | +} | ||
| 15 | +@end |
CNLiveDisease/Classes/ModuleA/CNLiveCoreMediator+A.h
0 → 100644
| 1 | +// | ||
| 2 | +// CNLiveCoreMediator+A.h | ||
| 3 | +// CNLiveDisease | ||
| 4 | +// | ||
| 5 | +// Created by 殷巧娟 on 2019/1/25. | ||
| 6 | +// | ||
| 7 | + | ||
| 8 | +#import <CNLiveCoreMediator/CNLiveCoreMediator.h> | ||
| 9 | + | ||
| 10 | +NS_ASSUME_NONNULL_BEGIN | ||
| 11 | + | ||
| 12 | +@interface CNLiveCoreMediator (A) | ||
| 13 | +- (UIViewController *)A_ViewControllerWithParams:(NSDictionary *)params; | ||
| 14 | +@end | ||
| 15 | + | ||
| 16 | +NS_ASSUME_NONNULL_END |
CNLiveDisease/Classes/ModuleA/CNLiveCoreMediator+A.m
0 → 100644
| 1 | +// | ||
| 2 | +// CNLiveCoreMediator+A.m | ||
| 3 | +// CNLiveDisease | ||
| 4 | +// | ||
| 5 | +// Created by 殷巧娟 on 2019/1/25. | ||
| 6 | +// | ||
| 7 | + | ||
| 8 | +#import "CNLiveCoreMediator+A.h" | ||
| 9 | + | ||
| 10 | +@implementation CNLiveCoreMediator (A) | ||
| 11 | +-(UIViewController *)A_ViewControllerWithParams:(NSDictionary *)params { | ||
| 12 | + return [self performTarget:@"A" action:@"ViewController" params:params shouldCacheTarget:NO]; | ||
| 13 | +} | ||
| 14 | +@end |
Example/CNLiveDisease.xcodeproj/project.pbxproj
| @@ -59,7 +59,7 @@ | @@ -59,7 +59,7 @@ | ||
| 59 | 6003F5BB195388D20070C39A /* Tests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Tests.m; sourceTree = "<group>"; }; | 59 | 6003F5BB195388D20070C39A /* Tests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Tests.m; sourceTree = "<group>"; }; |
| 60 | 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Tests-Prefix.pch"; sourceTree = "<group>"; }; | 60 | 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Tests-Prefix.pch"; sourceTree = "<group>"; }; |
| 61 | 648D02BDF591001BE30AFF80 /* Pods-CNLiveDisease_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CNLiveDisease_Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-CNLiveDisease_Example/Pods-CNLiveDisease_Example.release.xcconfig"; sourceTree = "<group>"; }; | 61 | 648D02BDF591001BE30AFF80 /* Pods-CNLiveDisease_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CNLiveDisease_Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-CNLiveDisease_Example/Pods-CNLiveDisease_Example.release.xcconfig"; sourceTree = "<group>"; }; |
| 62 | - 6A6E27CA09053B08B84C3D38 /* CNLiveDisease.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = CNLiveDisease.podspec; path = ../CNLiveDisease.podspec; sourceTree = "<group>"; }; | 62 | + 6A6E27CA09053B08B84C3D38 /* CNLiveDisease.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = CNLiveDisease.podspec; path = ../CNLiveDisease.podspec; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; |
| 63 | 71719F9E1E33DC2100824A3D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; }; | 63 | 71719F9E1E33DC2100824A3D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; }; |
| 64 | 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = Main.storyboard; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; }; | 64 | 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = Main.storyboard; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; }; |
| 65 | 8FA7F2BD8AA53739AED3B2D2 /* Pods_CNLiveDisease_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_CNLiveDisease_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; | 65 | 8FA7F2BD8AA53739AED3B2D2 /* Pods_CNLiveDisease_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_CNLiveDisease_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; |
| @@ -310,6 +310,7 @@ | @@ -310,6 +310,7 @@ | ||
| 310 | "${BUILT_PRODUCTS_DIR}/CNLiveAVCamera/CNLiveAVCamera.framework", | 310 | "${BUILT_PRODUCTS_DIR}/CNLiveAVCamera/CNLiveAVCamera.framework", |
| 311 | "${BUILT_PRODUCTS_DIR}/CNLiveBaseKit/CNLiveBaseKit.framework", | 311 | "${BUILT_PRODUCTS_DIR}/CNLiveBaseKit/CNLiveBaseKit.framework", |
| 312 | "${BUILT_PRODUCTS_DIR}/CNLiveCommonCategory/CNLiveCommonCategory.framework", | 312 | "${BUILT_PRODUCTS_DIR}/CNLiveCommonCategory/CNLiveCommonCategory.framework", |
| 313 | + "${BUILT_PRODUCTS_DIR}/CNLiveCoreMediator/CNLiveCoreMediator.framework", | ||
| 313 | "${BUILT_PRODUCTS_DIR}/CNLiveDisease/CNLiveDisease.framework", | 314 | "${BUILT_PRODUCTS_DIR}/CNLiveDisease/CNLiveDisease.framework", |
| 314 | "${BUILT_PRODUCTS_DIR}/CNLiveImagePickerController/CNLiveImagePickerController.framework", | 315 | "${BUILT_PRODUCTS_DIR}/CNLiveImagePickerController/CNLiveImagePickerController.framework", |
| 315 | "${BUILT_PRODUCTS_DIR}/FLAnimatedImage/FLAnimatedImage.framework", | 316 | "${BUILT_PRODUCTS_DIR}/FLAnimatedImage/FLAnimatedImage.framework", |
| @@ -325,6 +326,7 @@ | @@ -325,6 +326,7 @@ | ||
| 325 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveAVCamera.framework", | 326 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveAVCamera.framework", |
| 326 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveBaseKit.framework", | 327 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveBaseKit.framework", |
| 327 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveCommonCategory.framework", | 328 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveCommonCategory.framework", |
| 329 | + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveCoreMediator.framework", | ||
| 328 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveDisease.framework", | 330 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveDisease.framework", |
| 329 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveImagePickerController.framework", | 331 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveImagePickerController.framework", |
| 330 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FLAnimatedImage.framework", | 332 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FLAnimatedImage.framework", |
| @@ -350,6 +352,7 @@ | @@ -350,6 +352,7 @@ | ||
| 350 | "${BUILT_PRODUCTS_DIR}/CNLiveAVCamera/CNLiveAVCamera.framework", | 352 | "${BUILT_PRODUCTS_DIR}/CNLiveAVCamera/CNLiveAVCamera.framework", |
| 351 | "${BUILT_PRODUCTS_DIR}/CNLiveBaseKit/CNLiveBaseKit.framework", | 353 | "${BUILT_PRODUCTS_DIR}/CNLiveBaseKit/CNLiveBaseKit.framework", |
| 352 | "${BUILT_PRODUCTS_DIR}/CNLiveCommonCategory/CNLiveCommonCategory.framework", | 354 | "${BUILT_PRODUCTS_DIR}/CNLiveCommonCategory/CNLiveCommonCategory.framework", |
| 355 | + "${BUILT_PRODUCTS_DIR}/CNLiveCoreMediator/CNLiveCoreMediator.framework", | ||
| 353 | "${BUILT_PRODUCTS_DIR}/CNLiveImagePickerController/CNLiveImagePickerController.framework", | 356 | "${BUILT_PRODUCTS_DIR}/CNLiveImagePickerController/CNLiveImagePickerController.framework", |
| 354 | "${BUILT_PRODUCTS_DIR}/FLAnimatedImage/FLAnimatedImage.framework", | 357 | "${BUILT_PRODUCTS_DIR}/FLAnimatedImage/FLAnimatedImage.framework", |
| 355 | "${BUILT_PRODUCTS_DIR}/MJExtension/MJExtension.framework", | 358 | "${BUILT_PRODUCTS_DIR}/MJExtension/MJExtension.framework", |
| @@ -364,6 +367,7 @@ | @@ -364,6 +367,7 @@ | ||
| 364 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveAVCamera.framework", | 367 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveAVCamera.framework", |
| 365 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveBaseKit.framework", | 368 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveBaseKit.framework", |
| 366 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveCommonCategory.framework", | 369 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveCommonCategory.framework", |
| 370 | + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveCoreMediator.framework", | ||
| 367 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveImagePickerController.framework", | 371 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveImagePickerController.framework", |
| 368 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FLAnimatedImage.framework", | 372 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FLAnimatedImage.framework", |
| 369 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MJExtension.framework", | 373 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MJExtension.framework", |
Example/CNLiveDisease.xcworkspace/xcuserdata/yinqiaojuan.xcuserdatad/UserInterfaceState.xcuserstate
No preview for this file type
Example/Podfile
| @@ -16,6 +16,7 @@ target 'CNLiveDisease_Example' do | @@ -16,6 +16,7 @@ target 'CNLiveDisease_Example' do | ||
| 16 | pod 'CNLiveAVCamera' | 16 | pod 'CNLiveAVCamera' |
| 17 | # pod 'CNLiveUploadManager' | 17 | # pod 'CNLiveUploadManager' |
| 18 | pod 'FLAnimatedImage' | 18 | pod 'FLAnimatedImage' |
| 19 | + pod 'CNLiveCoreMediator' | ||
| 19 | target 'CNLiveDisease_Tests' do | 20 | target 'CNLiveDisease_Tests' do |
| 20 | inherit! :search_paths | 21 | inherit! :search_paths |
| 21 | pod 'CNLiveBaseKit' | 22 | pod 'CNLiveBaseKit' |
| @@ -26,6 +27,7 @@ target 'CNLiveDisease_Example' do | @@ -26,6 +27,7 @@ target 'CNLiveDisease_Example' do | ||
| 26 | pod 'CNLiveAVCamera' | 27 | pod 'CNLiveAVCamera' |
| 27 | # pod 'CNLiveUploadManager' | 28 | # pod 'CNLiveUploadManager' |
| 28 | pod 'FLAnimatedImage' | 29 | pod 'FLAnimatedImage' |
| 30 | + pod 'CNLiveCoreMediator' | ||
| 29 | 31 | ||
| 30 | end | 32 | end |
| 31 | end | 33 | end |
Example/Podfile.lock
| @@ -5,10 +5,12 @@ PODS: | @@ -5,10 +5,12 @@ PODS: | ||
| 5 | - MJExtension (~> 3.0.15.1) | 5 | - MJExtension (~> 3.0.15.1) |
| 6 | - CNLiveCommonCategory (0.2.5): | 6 | - CNLiveCommonCategory (0.2.5): |
| 7 | - SDWebImage (~> 4.4.2) | 7 | - SDWebImage (~> 4.4.2) |
| 8 | - - CNLiveDisease (0.0.5): | 8 | + - CNLiveCoreMediator (0.1.0) |
| 9 | + - CNLiveDisease (0.0.6): | ||
| 9 | - CNLiveAVCamera | 10 | - CNLiveAVCamera |
| 10 | - CNLiveBaseKit | 11 | - CNLiveBaseKit |
| 11 | - CNLiveCommonCategory | 12 | - CNLiveCommonCategory |
| 13 | + - CNLiveCoreMediator | ||
| 12 | - CNLiveImagePickerController | 14 | - CNLiveImagePickerController |
| 13 | - FLAnimatedImage | 15 | - FLAnimatedImage |
| 14 | - Masonry | 16 | - Masonry |
| @@ -291,6 +293,7 @@ DEPENDENCIES: | @@ -291,6 +293,7 @@ DEPENDENCIES: | ||
| 291 | - CNLiveAVCamera | 293 | - CNLiveAVCamera |
| 292 | - CNLiveBaseKit | 294 | - CNLiveBaseKit |
| 293 | - CNLiveCommonCategory | 295 | - CNLiveCommonCategory |
| 296 | + - CNLiveCoreMediator | ||
| 294 | - CNLiveDisease (from `../`) | 297 | - CNLiveDisease (from `../`) |
| 295 | - CNLiveImagePickerController | 298 | - CNLiveImagePickerController |
| 296 | - FLAnimatedImage | 299 | - FLAnimatedImage |
| @@ -302,6 +305,7 @@ SPEC REPOS: | @@ -302,6 +305,7 @@ SPEC REPOS: | ||
| 302 | - CNLiveAVCamera | 305 | - CNLiveAVCamera |
| 303 | - CNLiveBaseKit | 306 | - CNLiveBaseKit |
| 304 | - CNLiveCommonCategory | 307 | - CNLiveCommonCategory |
| 308 | + - CNLiveCoreMediator | ||
| 305 | - CNLiveImagePickerController | 309 | - CNLiveImagePickerController |
| 306 | https://github.com/cocoapods/specs.git: | 310 | https://github.com/cocoapods/specs.git: |
| 307 | - FLAnimatedImage | 311 | - FLAnimatedImage |
| @@ -318,7 +322,8 @@ SPEC CHECKSUMS: | @@ -318,7 +322,8 @@ SPEC CHECKSUMS: | ||
| 318 | CNLiveAVCamera: 7f3eba8eb1827f6e7a5047b0bb9f9f0bf19d1451 | 322 | CNLiveAVCamera: 7f3eba8eb1827f6e7a5047b0bb9f9f0bf19d1451 |
| 319 | CNLiveBaseKit: 09a97c3411a91270fb68bfe20a1df2cdbcd2c524 | 323 | CNLiveBaseKit: 09a97c3411a91270fb68bfe20a1df2cdbcd2c524 |
| 320 | CNLiveCommonCategory: 57cb8422ccf17ba5cc8fffe76851fa828c367d06 | 324 | CNLiveCommonCategory: 57cb8422ccf17ba5cc8fffe76851fa828c367d06 |
| 321 | - CNLiveDisease: 021cc3d2127bf9fb4198d7e569d12b638a8e5d23 | 325 | + CNLiveCoreMediator: 0b76225bcbbf99427065545e2a7616092ddc8758 |
| 326 | + CNLiveDisease: cbc8c4bdf867782252b70faaef2477e904016b05 | ||
| 322 | CNLiveImagePickerController: 2be3ac0a75563f5945101ee6e0a787ad2fc15549 | 327 | CNLiveImagePickerController: 2be3ac0a75563f5945101ee6e0a787ad2fc15549 |
| 323 | FLAnimatedImage: 4a0b56255d9b05f18b6dd7ee06871be5d3b89e31 | 328 | FLAnimatedImage: 4a0b56255d9b05f18b6dd7ee06871be5d3b89e31 |
| 324 | Masonry: 7c429b56da9d4ee0bbb3ed77a5ea710d6a5df39e | 329 | Masonry: 7c429b56da9d4ee0bbb3ed77a5ea710d6a5df39e |
| @@ -326,6 +331,6 @@ SPEC CHECKSUMS: | @@ -326,6 +331,6 @@ SPEC CHECKSUMS: | ||
| 326 | QMUIKit: 33959d093f48bb64f754ad696c310887a0768c49 | 331 | QMUIKit: 33959d093f48bb64f754ad696c310887a0768c49 |
| 327 | SDWebImage: c5594f1a19c48d526d321e548902b56b479cd508 | 332 | SDWebImage: c5594f1a19c48d526d321e548902b56b479cd508 |
| 328 | 333 | ||
| 329 | -PODFILE CHECKSUM: 1914bf259da01d29bb52accd3589a566adee9132 | 334 | +PODFILE CHECKSUM: 54408bf4fc11865da2c174f559481f56c69d8533 |
| 330 | 335 | ||
| 331 | COCOAPODS: 1.5.3 | 336 | COCOAPODS: 1.5.3 |
Example/Pods/Local Podspecs/CNLiveDisease.podspec.json
| 1 | { | 1 | { |
| 2 | "name": "CNLiveDisease", | 2 | "name": "CNLiveDisease", |
| 3 | - "version": "0.0.5", | 3 | + "version": "0.0.6", |
| 4 | "summary": "智慧农业部分组件化", | 4 | "summary": "智慧农业部分组件化", |
| 5 | "description": "TODO: Add long description of the pod here.", | 5 | "description": "TODO: Add long description of the pod here.", |
| 6 | "homepage": "http://bj.gitlab.cnlive.com/ios-team/CNLiveDisease", | 6 | "homepage": "http://bj.gitlab.cnlive.com/ios-team/CNLiveDisease", |
| @@ -13,7 +13,7 @@ | @@ -13,7 +13,7 @@ | ||
| 13 | }, | 13 | }, |
| 14 | "source": { | 14 | "source": { |
| 15 | "git": "http://bj.gitlab.cnlive.com/ios-team/CNLiveDisease.git", | 15 | "git": "http://bj.gitlab.cnlive.com/ios-team/CNLiveDisease.git", |
| 16 | - "tag": "0.0.5" | 16 | + "tag": "0.0.6" |
| 17 | }, | 17 | }, |
| 18 | "platforms": { | 18 | "platforms": { |
| 19 | "ios": "9.0" | 19 | "ios": "9.0" |
| @@ -49,6 +49,9 @@ | @@ -49,6 +49,9 @@ | ||
| 49 | ], | 49 | ], |
| 50 | "FLAnimatedImage": [ | 50 | "FLAnimatedImage": [ |
| 51 | 51 | ||
| 52 | + ], | ||
| 53 | + "CNLiveCoreMediator": [ | ||
| 54 | + | ||
| 52 | ] | 55 | ] |
| 53 | } | 56 | } |
| 54 | } | 57 | } |
Example/Pods/Manifest.lock
| @@ -5,10 +5,12 @@ PODS: | @@ -5,10 +5,12 @@ PODS: | ||
| 5 | - MJExtension (~> 3.0.15.1) | 5 | - MJExtension (~> 3.0.15.1) |
| 6 | - CNLiveCommonCategory (0.2.5): | 6 | - CNLiveCommonCategory (0.2.5): |
| 7 | - SDWebImage (~> 4.4.2) | 7 | - SDWebImage (~> 4.4.2) |
| 8 | - - CNLiveDisease (0.0.5): | 8 | + - CNLiveCoreMediator (0.1.0) |
| 9 | + - CNLiveDisease (0.0.6): | ||
| 9 | - CNLiveAVCamera | 10 | - CNLiveAVCamera |
| 10 | - CNLiveBaseKit | 11 | - CNLiveBaseKit |
| 11 | - CNLiveCommonCategory | 12 | - CNLiveCommonCategory |
| 13 | + - CNLiveCoreMediator | ||
| 12 | - CNLiveImagePickerController | 14 | - CNLiveImagePickerController |
| 13 | - FLAnimatedImage | 15 | - FLAnimatedImage |
| 14 | - Masonry | 16 | - Masonry |
| @@ -291,6 +293,7 @@ DEPENDENCIES: | @@ -291,6 +293,7 @@ DEPENDENCIES: | ||
| 291 | - CNLiveAVCamera | 293 | - CNLiveAVCamera |
| 292 | - CNLiveBaseKit | 294 | - CNLiveBaseKit |
| 293 | - CNLiveCommonCategory | 295 | - CNLiveCommonCategory |
| 296 | + - CNLiveCoreMediator | ||
| 294 | - CNLiveDisease (from `../`) | 297 | - CNLiveDisease (from `../`) |
| 295 | - CNLiveImagePickerController | 298 | - CNLiveImagePickerController |
| 296 | - FLAnimatedImage | 299 | - FLAnimatedImage |
| @@ -302,6 +305,7 @@ SPEC REPOS: | @@ -302,6 +305,7 @@ SPEC REPOS: | ||
| 302 | - CNLiveAVCamera | 305 | - CNLiveAVCamera |
| 303 | - CNLiveBaseKit | 306 | - CNLiveBaseKit |
| 304 | - CNLiveCommonCategory | 307 | - CNLiveCommonCategory |
| 308 | + - CNLiveCoreMediator | ||
| 305 | - CNLiveImagePickerController | 309 | - CNLiveImagePickerController |
| 306 | https://github.com/cocoapods/specs.git: | 310 | https://github.com/cocoapods/specs.git: |
| 307 | - FLAnimatedImage | 311 | - FLAnimatedImage |
| @@ -318,7 +322,8 @@ SPEC CHECKSUMS: | @@ -318,7 +322,8 @@ SPEC CHECKSUMS: | ||
| 318 | CNLiveAVCamera: 7f3eba8eb1827f6e7a5047b0bb9f9f0bf19d1451 | 322 | CNLiveAVCamera: 7f3eba8eb1827f6e7a5047b0bb9f9f0bf19d1451 |
| 319 | CNLiveBaseKit: 09a97c3411a91270fb68bfe20a1df2cdbcd2c524 | 323 | CNLiveBaseKit: 09a97c3411a91270fb68bfe20a1df2cdbcd2c524 |
| 320 | CNLiveCommonCategory: 57cb8422ccf17ba5cc8fffe76851fa828c367d06 | 324 | CNLiveCommonCategory: 57cb8422ccf17ba5cc8fffe76851fa828c367d06 |
| 321 | - CNLiveDisease: 021cc3d2127bf9fb4198d7e569d12b638a8e5d23 | 325 | + CNLiveCoreMediator: 0b76225bcbbf99427065545e2a7616092ddc8758 |
| 326 | + CNLiveDisease: cbc8c4bdf867782252b70faaef2477e904016b05 | ||
| 322 | CNLiveImagePickerController: 2be3ac0a75563f5945101ee6e0a787ad2fc15549 | 327 | CNLiveImagePickerController: 2be3ac0a75563f5945101ee6e0a787ad2fc15549 |
| 323 | FLAnimatedImage: 4a0b56255d9b05f18b6dd7ee06871be5d3b89e31 | 328 | FLAnimatedImage: 4a0b56255d9b05f18b6dd7ee06871be5d3b89e31 |
| 324 | Masonry: 7c429b56da9d4ee0bbb3ed77a5ea710d6a5df39e | 329 | Masonry: 7c429b56da9d4ee0bbb3ed77a5ea710d6a5df39e |
| @@ -326,6 +331,6 @@ SPEC CHECKSUMS: | @@ -326,6 +331,6 @@ SPEC CHECKSUMS: | ||
| 326 | QMUIKit: 33959d093f48bb64f754ad696c310887a0768c49 | 331 | QMUIKit: 33959d093f48bb64f754ad696c310887a0768c49 |
| 327 | SDWebImage: c5594f1a19c48d526d321e548902b56b479cd508 | 332 | SDWebImage: c5594f1a19c48d526d321e548902b56b479cd508 |
| 328 | 333 | ||
| 329 | -PODFILE CHECKSUM: 1914bf259da01d29bb52accd3589a566adee9132 | 334 | +PODFILE CHECKSUM: 54408bf4fc11865da2c174f559481f56c69d8533 |
| 330 | 335 | ||
| 331 | COCOAPODS: 1.5.3 | 336 | COCOAPODS: 1.5.3 |