Files
runner-images-sangeeth/fastlane/Fastfile
2025-05-14 13:22:09 +05:30

11 lines
195 B
Ruby

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