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