Sha256: 0b5b147d972ccf04346724bc912ae60b19b9306cb270d3742053ed9c0b5327db
Contents?: true
Size: 1.42 KB
Versions: 1
Compression:
Stored size: 1.42 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", // "Apple Watch Series 6 - 44mm" // ] //} // 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fastlane_hotfix-2.187.0 | snapshot/lib/assets/SnapfileTemplate.swift |