Skip to content

Commit

Permalink
fix: ios minimum 11, macOS 10.13, tvOS 11
Browse files Browse the repository at this point in the history
This fixes the build for people now that zip framework no longer has armv7 builds

Fixes: #56
  • Loading branch information
mikehardy committed Aug 26, 2022
1 parent f54a914 commit 2d650e7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions FirebaseFirestore.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ Pod::Spec.new do |s|
s.osx.frameworks = 'SystemConfiguration'
s.tvos.frameworks = 'SystemConfiguration', 'UIKit'
s.library = 'c++'
s.ios.deployment_target = '10.0'
s.osx.deployment_target = '10.12'
s.tvos.deployment_target = '10.0'
s.ios.deployment_target = '11.0'
s.osx.deployment_target = '10.13'
s.tvos.deployment_target = '11.0'

s.default_subspecs = "AutodetectLeveldb"

Expand Down

0 comments on commit 2d650e7

Please sign in to comment.