Skip to content

Commit 58684cb

Browse files
authored
Merge pull request #51 from lixm1988/main
support iOS 14.0
2 parents f9a8b72 + 7122ccb commit 58684cb

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

Example/EaseChatUIKit.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@
449449
GCC_INPUT_FILETYPE = sourcecode.cpp.objcpp;
450450
INFOPLIST_FILE = EaseChatUIKit/Info.plist;
451451
INFOPLIST_KEY_CFBundleDisplayName = EaseChat;
452-
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
452+
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
453453
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
454454
MARKETING_VERSION = 1;
455455
MODULE_NAME = ExampleApp;
@@ -473,7 +473,7 @@
473473
GCC_INPUT_FILETYPE = sourcecode.cpp.objcpp;
474474
INFOPLIST_FILE = EaseChatUIKit/Info.plist;
475475
INFOPLIST_KEY_CFBundleDisplayName = EaseChat;
476-
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
476+
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
477477
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
478478
MARKETING_VERSION = 1;
479479
MODULE_NAME = ExampleApp;

Example/Podfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
use_frameworks!
22

3-
platform :ios, '13.0'
3+
platform :ios, '14.0'
44

55
target 'EaseChatUIKit_Example' do
66
pod 'EaseChatUIKit', :path => '../'
77
post_install do |installer|
88
installer.generated_projects.each do |project|
99
project.targets.each do |target|
1010
target.build_configurations.each do |config|
11-
config.build_settings["IPHONEOS_DEPLOYMENT_TARGET"] = "13.0"
11+
config.build_settings["IPHONEOS_DEPLOYMENT_TARGET"] = "14.0"
1212
config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"
1313
config.build_settings["DEVELOPMENT_TEAM"] = "JC854K845H"
1414
end

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
# 开发环境
3838

3939
- Xcode 16.0及以上版本 原因是UIKit中使用了部分检测音频AVAudioApplication api适配iOS17以上系统
40-
- 最低支持系统:iOS 13.0
40+
- 最低支持系统:iOS 14.0
4141
- 请确保您的项目已设置有效的开发者签名
4242
- cocoapods v1.14.3 above
4343

@@ -51,7 +51,7 @@
5151

5252
```ruby
5353
source 'https://github.com/CocoaPods/Specs.git'
54-
platform :ios, '13.0'
54+
platform :ios, '14.0'
5555

5656
target 'YourTarget' do
5757
use_frameworks!
@@ -62,7 +62,7 @@ end
6262
post_install do |installer|
6363
installer.pods_project.targets.each do |target|
6464
target.build_configurations.each do |config|
65-
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
65+
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '14.0'
6666
config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"
6767
end
6868
end

0 commit comments

Comments
 (0)