Skip to content

Commit

Permalink
Update minimum deployment target for ios and macos
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmartos96 committed Sep 1, 2023
1 parent 57a9f76 commit 6be83a5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion sqflite/ios/sqflite.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ Access SQLite database.
s.dependency 'FMDB/SQLCipher', '>= 2.7.5'
s.dependency 'SQLCipher', '~> 4.5.0'

s.platform = :ios, '9.0'
s.platform = :ios, '11.0'
s.ios.deployment_target = '11.0'
s.pod_target_xcconfig = {
'DEFINES_MODULE' => 'YES',
'HEADER_SEARCH_PATHS' => 'SQLCipher',
Expand Down
2 changes: 1 addition & 1 deletion sqflite/macos/sqflite.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Access SQLite database.
s.dependency 'FMDB/SQLCipher', '>= 2.7.5'
s.dependency 'SQLCipher', '~> 4.5.0'

s.platform = :osx, '10.11'
s.platform = :osx, '10.13'
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'HEADER_SEARCH_PATHS' => 'SQLCipher' }
s.swift_version = '5.0'
end

0 comments on commit 6be83a5

Please sign in to comment.