From a177db71b16c46cd49816b1a7ec21cdf0a02d39c Mon Sep 17 00:00:00 2001 From: Stefan Ceriu Date: Mon, 25 Mar 2024 11:02:06 +0200 Subject: [PATCH] Switch back to iOS 17.2 and the iPhone 15 and iPad 10th generation --- fastlane/Fastfile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 25a57972e..8cbfaa08b 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -100,15 +100,15 @@ lane :ui_tests do |options| reset_simulator_contents() create_simulator_if_necessary( - name: "iPhone 14 (16.4)", - type: "com.apple.CoreSimulator.SimDeviceType.iPhone-14", - runtime: "com.apple.CoreSimulator.SimRuntime.iOS-16-4" + name: "iPhone 15 (17.2)", + type: "com.apple.CoreSimulator.SimDeviceType.iPhone-15", + runtime: "com.apple.CoreSimulator.SimRuntime.iOS-17-2" ) create_simulator_if_necessary( - name: "iPad (9th generation)", - type: "com.apple.CoreSimulator.SimDeviceType.iPad-9th-generation", - runtime: "com.apple.CoreSimulator.SimRuntime.iOS-16-4" + name: "iPad (10th generation)", + type: "com.apple.CoreSimulator.SimDeviceType.iPad-10th-generation", + runtime: "com.apple.CoreSimulator.SimRuntime.iOS-17-2" ) if options[:test_name] @@ -119,7 +119,7 @@ lane :ui_tests do |options| run_tests( scheme: "UITests", - devices: ["iPhone 14", "iPad (9th generation)"], + devices: ["iPhone 15", "iPad (10th generation)"], ensure_devices_found: true, prelaunch_simulator: true, result_bundle: true,