From 2aaae11515140161ab09608b619b4fa022eb1634 Mon Sep 17 00:00:00 2001 From: Tim Oliver Date: Sat, 6 Apr 2024 17:16:13 +0900 Subject: [PATCH] Update target simulator to iPhone 14 --- fastlane/Fastfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 6b89b61d..9ac75903 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -2,7 +2,7 @@ default_platform(:ios) desc "Runs the unit tests to ensure the build is working" lane :test do - scan(scheme: ENV["TEST_SCHEME"], devices: ["iPhone SE"], clean: true) + scan(scheme: ENV["TEST_SCHEME"], devices: ["iPhone 14"], clean: true) end desc "Cuts a new release and distributes it on CocoaPods and Carthage"