Skip to content

Commit

Permalink
RevenueCatUI: lowered CocoaPods deployment target to 11.0 (#3378)
Browse files Browse the repository at this point in the history
This allows us to use it with the same deployment target as
`RevenueCat`.
  • Loading branch information
NachoSoto committed Nov 2, 2023
1 parent a66fc2e commit 9bcf90b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion RevenueCatUI.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ Pod::Spec.new do |s|
s.framework = 'SwiftUI'
s.swift_version = '5.7'

s.ios.deployment_target = '15.0'
# Technically PaywallView isn't available until iOS 15,
# but this can be detected at compile time.
s.ios.deployment_target = '11.0'

s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }

Expand Down

0 comments on commit 9bcf90b

Please sign in to comment.