Commit 9c18b1c3c4d48e41d6f0a2152ce7058683078e1c
1 parent
7aa8dd22
0.0.3 版本 iOS系统最低支持 10.0
Showing
3 changed files
with
8 additions
and
5 deletions
CNLiveCustomControl.podspec
| ... | ... | @@ -8,7 +8,7 @@ |
| 8 | 8 | |
| 9 | 9 | Pod::Spec.new do |s| |
| 10 | 10 | s.name = 'CNLiveCustomControl' |
| 11 | - s.version = '0.0.2' | |
| 11 | + s.version = '0.0.3' | |
| 12 | 12 | s.summary = 'CNLiveCustomControl' |
| 13 | 13 | |
| 14 | 14 | # This description is used to generate tags and improve search results. |
| ... | ... | @@ -28,7 +28,7 @@ TODO: 网家家-自定义控件. |
| 28 | 28 | s.source = { :git => 'http://bj.gitlab.cnlive.com/ios-team/CNLiveCustomControl.git', :tag => s.version.to_s } |
| 29 | 29 | # s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>' |
| 30 | 30 | |
| 31 | - s.ios.deployment_target = '9.0' | |
| 31 | + s.ios.deployment_target = '10.0' | |
| 32 | 32 | |
| 33 | 33 | s.source_files = 'CNLiveCustomControl/Classes/CNLiveCustomControl.h' |
| 34 | 34 | ... | ... |
Example/CNLiveCustomControl.xcodeproj/project.pbxproj
| ... | ... | @@ -247,6 +247,9 @@ |
| 247 | 247 | LastUpgradeCheck = 0720; |
| 248 | 248 | ORGANIZATIONNAME = "153993236@qq.com"; |
| 249 | 249 | TargetAttributes = { |
| 250 | + 6003F589195388D20070C39A = { | |
| 251 | + DevelopmentTeam = 94X49GG3ZW; | |
| 252 | + }; | |
| 250 | 253 | 6003F5AD195388D20070C39A = { |
| 251 | 254 | TestTargetID = 6003F589195388D20070C39A; |
| 252 | 255 | }; |
| ... | ... | @@ -327,7 +330,6 @@ |
| 327 | 330 | "${BUILT_PRODUCTS_DIR}/CNLiveCategory/CNLiveCategory.framework", |
| 328 | 331 | "${BUILT_PRODUCTS_DIR}/CNLiveCustomControl/CNLiveCustomControl.framework", |
| 329 | 332 | "${BUILT_PRODUCTS_DIR}/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework", |
| 330 | - "${BUILT_PRODUCTS_DIR}/Masonry/Masonry.framework", | |
| 331 | 333 | "${BUILT_PRODUCTS_DIR}/QMUIKit/QMUIKit.framework", |
| 332 | 334 | ); |
| 333 | 335 | name = "[CP] Embed Pods Frameworks"; |
| ... | ... | @@ -335,7 +337,6 @@ |
| 335 | 337 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveCategory.framework", |
| 336 | 338 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveCustomControl.framework", |
| 337 | 339 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveTripartiteManagement.framework", |
| 338 | - "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Masonry.framework", | |
| 339 | 340 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/QMUIKit.framework", |
| 340 | 341 | ); |
| 341 | 342 | runOnlyForDeploymentPostprocessing = 0; |
| ... | ... | @@ -502,6 +503,7 @@ |
| 502 | 503 | baseConfigurationReference = 5A0724CA917A291E36551AAC /* Pods-CNLiveCustomControl_Example.debug.xcconfig */; |
| 503 | 504 | buildSettings = { |
| 504 | 505 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; |
| 506 | + DEVELOPMENT_TEAM = 94X49GG3ZW; | |
| 505 | 507 | GCC_PRECOMPILE_PREFIX_HEADER = YES; |
| 506 | 508 | GCC_PREFIX_HEADER = "CNLiveCustomControl/CNLiveCustomControl-Prefix.pch"; |
| 507 | 509 | INFOPLIST_FILE = "CNLiveCustomControl/CNLiveCustomControl-Info.plist"; |
| ... | ... | @@ -518,6 +520,7 @@ |
| 518 | 520 | baseConfigurationReference = 7247E46C71F22F97DFFB8FF6 /* Pods-CNLiveCustomControl_Example.release.xcconfig */; |
| 519 | 521 | buildSettings = { |
| 520 | 522 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; |
| 523 | + DEVELOPMENT_TEAM = 94X49GG3ZW; | |
| 521 | 524 | GCC_PRECOMPILE_PREFIX_HEADER = YES; |
| 522 | 525 | GCC_PREFIX_HEADER = "CNLiveCustomControl/CNLiveCustomControl-Prefix.pch"; |
| 523 | 526 | INFOPLIST_FILE = "CNLiveCustomControl/CNLiveCustomControl-Info.plist"; | ... | ... |
Example/Podfile
| ... | ... | @@ -2,7 +2,7 @@ use_frameworks! |
| 2 | 2 | source 'https://github.com/CocoaPods/Specs.git' |
| 3 | 3 | source 'http://bj.gitlab.cnlive.com/ios-team/CNLiveRepos.git' |
| 4 | 4 | |
| 5 | -platform :ios, '9.0' | |
| 5 | +platform :ios, '10.0' | |
| 6 | 6 | |
| 7 | 7 | target 'CNLiveCustomControl_Example' do |
| 8 | 8 | pod 'CNLiveCustomControl', :path => '../' | ... | ... |