From 26ca7aceb3a1ddc0008388dda22e434e32bf085c Mon Sep 17 00:00:00 2001 From: sangeeths03 Date: Wed, 14 May 2025 13:22:09 +0530 Subject: [PATCH] Create Fastfile --- fastlane/Fastfile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 fastlane/Fastfile diff --git a/fastlane/Fastfile b/fastlane/Fastfile new file mode 100644 index 00000000..1017c671 --- /dev/null +++ b/fastlane/Fastfile @@ -0,0 +1,10 @@ +default_platform(:ios) + +platform :ios do + lane :scan_pro do + scan( + device: "iPhone 16 Pro", + project: "../YourProject.xcodeproj" # Adjust this based on actual path + ) + end +end