Snapfile 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. # Uncomment the lines below you want to change by removing the # in the beginning
  2. # A list of devices you want to take the screenshots from
  3. devices([
  4. # "iPhone 4s",
  5. "iPhone 6 Plus",
  6. "iPhone 5s",
  7. "iPhone 7",
  8. "iPad Pro (12.9 inch)",
  9. # "iPad Pro (9.7 inch)",
  10. # "Apple TV 1080p"
  11. ])
  12. languages([
  13. "en-US",
  14. ])
  15. # The name of the scheme which contains the UI Tests
  16. scheme "InAppMessaging_Example_iOS_Swift"
  17. # Where should the resulting screenshots be stored?
  18. output_directory "./screenshots"
  19. clear_previous_screenshots true # remove the '#' to clear all previously generated screenshots before creating new ones
  20. # Choose which project/workspace to use
  21. # project "./Project.xcodeproj"
  22. # workspace "./Project.xcworkspace"
  23. workspace "InAppMessaging-Example-iOS.xcworkspace"
  24. # Arguments to pass to the app on launch. See https://github.com/fastlane/fastlane/tree/master/snapshot#launch-arguments
  25. # launch_arguments(["-favColor red"])
  26. # For more information about all available options run
  27. # fastlane snapshot --help