Skip to content

Commit

Permalink
Update the minimum deployment target for iOS to iOS 12 and increase t…
Browse files Browse the repository at this point in the history
…he plugin version to 0.10.0

Modified the iOS deployment target setting in the project configuration to iOS 12. This change aligns with newer iOS features and improvements, ensuring better app performance and security.
Updated the plugin version to 0.10.0 to mark a new milestone release with significant changes, including the increased iOS deployment target and other enhancements included in this version.
  • Loading branch information
rafaelsetragni committed Oct 14, 2024
1 parent 8ea6317 commit e05ec88
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Example/Podfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use_frameworks!

platform :ios, '11.0'
platform :ios, '12.0'

target 'IosAwnCore_Example' do
pod 'IosAwnCore', :path => '../'
Expand All @@ -18,7 +18,7 @@ post_install do |installer|
if target.name == 'IosAwnCore'
config.build_settings['BUILD_LIBRARY_FOR_DISTRIBUTION'] = 'YES'
end
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
end
end
end
4 changes: 2 additions & 2 deletions IosAwnCore.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = 'IosAwnCore'
s.version = '0.9.3'
s.version = '0.10.0'
s.summary = 'Awesome Notifications iOS Core'

s.description = <<-DESC
Expand All @@ -24,7 +24,7 @@ Awesome Notifications Ios Core (Only iOS devices).

s.static_framework = true
s.platform = :ios
s.ios.deployment_target = '11.0'
s.ios.deployment_target = '12.0'
s.swift_version = '5.3'

s.source_files = 'IosAwnCore/Classes/**/*'
Expand Down

0 comments on commit e05ec88

Please sign in to comment.