Skip to content

Commit

Permalink
Set minimum iOS version to 14.3
Browse files Browse the repository at this point in the history
  • Loading branch information
andreiqvik committed Oct 27, 2023
1 parent 50f8160 commit 17f35ed
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions NinchatSDKSwift.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

Pod::Spec.new do |s|
s.name = "NinchatSDKSwift"
s.version = "0.8.0"
s.version = "0.8.1"
s.summary = "iOS SDK for Ninchat, Swift version"
s.description = "For building iOS applications using Ninchat messaging."
s.homepage = "https://ninchat.com/"
s.license = { :type => "Ninchat", :file => "LICENSE.md" }
s.author = { "Hassan Shahbazi" => "hassan@ninchat.com" }
s.author = { "Antti Hollanti" => "antti.hollanti@terveystalo.com" }
s.source = { :git => "https://github.com/somia/ninchat-sdk-ios-swift.git", :tag => "#{s.version}" }
s.ios.deployment_target = "13.0"
s.ios.deployment_target = "14.3"

# Handle the SDK itself as a subspec with dependencies to the frameworks
s.subspec "SDKSwift" do |ss|
Expand Down
8 changes: 4 additions & 4 deletions NinchatSDKSwift.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1734,7 +1734,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
IPHONEOS_DEPLOYMENT_TARGET = 14.3;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
ONLY_ACTIVE_ARCH = YES;
Expand Down Expand Up @@ -1798,7 +1798,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
IPHONEOS_DEPLOYMENT_TARGET = 14.3;
MTL_ENABLE_DEBUG_INFO = NO;
MTL_FAST_MATH = YES;
OTHER_CFLAGS = "";
Expand Down Expand Up @@ -1976,7 +1976,7 @@
FRAMEWORK_SEARCH_PATHS = "$(inherited)";
HEADER_SEARCH_PATHS = "$(inherited)";
INFOPLIST_FILE = NinchatSDKSwiftServerTests/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 13.2;
IPHONEOS_DEPLOYMENT_TARGET = 14.3;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand All @@ -1999,7 +1999,7 @@
FRAMEWORK_SEARCH_PATHS = "$(inherited)";
HEADER_SEARCH_PATHS = "$(inherited)";
INFOPLIST_FILE = NinchatSDKSwiftServerTests/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 13.2;
IPHONEOS_DEPLOYMENT_TARGET = 14.3;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand Down
4 changes: 2 additions & 2 deletions Podfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
platform :ios, '13.0'
platform :ios, '14.3'
inhibit_all_warnings!
use_frameworks!

Expand Down Expand Up @@ -31,7 +31,7 @@ end
post_install do |pi|
pi.pods_project.build_configurations.each do |config|
config.build_settings['CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER'] = 'YES'
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13'
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '14.3'
end
pi.pods_project.targets.each do |t|
t.build_configurations.each do |config|
Expand Down

0 comments on commit 17f35ed

Please sign in to comment.