Sha256: df435b68405d35653c03a22039fa768717a96b11a01b86c37076bcf621b61b69
Contents?: true
Size: 1.34 KB
Versions: 633
Compression:
Stored size: 1.34 KB
Contents
// Uncomment the lines below you want to change by removing the // in the beginning class Snapshotfile: SnapshotfileProtocol { // A list of devices you want to take the screenshots from //var devices: [String] { return [ // "iPhone 6", // "iPhone 6 Plus", // "iPhone 5", // "iPad Pro (12.9-inch)", // "iPad Pro (9.7-inch)", // "Apple TV 1080p" // ] //} // locales not supported in Swift yet var languages: [String] { return [ "en-US", "de-DE", "it-IT" ] } // The name of the scheme which contains the UI Tests // var scheme: String? { return "SchemeName" } // Where should the resulting screenshots be stored? // var outputDirectory: String { return "./screenshots" } // Clear all previously generated screenshots before creating new ones // var clearPreviousScreenshots: Bool { return true } // Choose which project/workspace to use // var project: String? { return "./Project.xcodeproj" } // var workspace: String? { return "./Project.xcworkspace" } // Arguments to pass to the app on launch. See https://docs.fastlane.tools/actions/snapshot/#launch-arguments // var launchArguments: [String] { return ["-favColor red"] } // For more information about all available options run // fastlane snapshot --help }
Version data entries
633 entries across 633 versions & 2 rubygems