Create Fastfile

This commit is contained in:
sangeeths03
2025-05-14 13:22:09 +05:30
committed by GitHub
parent e5925d606a
commit 26ca7aceb3

10
fastlane/Fastfile Normal file
View File

@@ -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