Skip to content

Commit

Permalink
🔧 ios: set deployment target to 13.4
Browse files Browse the repository at this point in the history
  • Loading branch information
cruzdanilo committed Nov 27, 2023
1 parent d183a23 commit 570817d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion app.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@ export default {
plugins: [
"sentry-expo",
["expo-router", { origin: "https://exactly.app" }],
["expo-build-properties", { android: { compileSdkVersion: 34, targetSdkVersion: 34 } }],
[
"expo-build-properties",
{ android: { compileSdkVersion: 34, targetSdkVersion: 34 }, ios: { deploymentTarget: "13.4" } },
],
],
experiments: { typedRoutes: true },
hooks: {
Expand Down
2 changes: 1 addition & 1 deletion webauthn/ios/ExpoWebauthn.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Pod::Spec.new do |s|
s.author = package['author']
s.homepage = package['repository']['url']
s.source = { git: package['repository']['url'] }
s.platform = :ios, '13.0'
s.platform = :ios, '13.4'
s.swift_version = '5.4'
s.static_framework = true

Expand Down

0 comments on commit 570817d

Please sign in to comment.