fastlane/swift/ScreengrabfileProtocol.swift in fastlane_hotfix-2.165.1 vs fastlane/swift/ScreengrabfileProtocol.swift in fastlane_hotfix-2.187.0

- old
+ new

@@ -1,13 +1,13 @@ // ScreengrabfileProtocol.swift -// Copyright (c) 2020 FastlaneTools +// Copyright (c) 2021 FastlaneTools public protocol ScreengrabfileProtocol: class { /// Path to the root of your Android SDK installation, e.g. ~/tools/android-sdk-macosx var androidHome: String? { get } - /// The Android build tools version to use, e.g. '23.0.2' + /// **DEPRECATED!** The Android build tools version to use, e.g. '23.0.2' var buildToolsVersion: String? { get } /// A list of locales which should be used var locales: [String] { get } @@ -36,14 +36,14 @@ var launchArguments: [String]? { get } /// The fully qualified class name of your test instrumentation runner var testInstrumentationRunner: String { get } - /// Return the device to this locale after running tests + /// **DEPRECATED!** Return the device to this locale after running tests var endingLocale: String { get } - /// Restarts the adb daemon using `adb root` to allow access to screenshots directories on device. Use if getting 'Permission denied' errors + /// **DEPRECATED!** Restarts the adb daemon using `adb root` to allow access to screenshots directories on device. Use if getting 'Permission denied' errors var useAdbRoot: Bool { get } /// The path to the APK for the app under test var appApkPath: String? { get } @@ -94,6 +94,6 @@ var adbHost: String? { return nil } } // Please don't remove the lines below // They are used to detect outdated files -// FastlaneRunnerAPIVersion [0.9.46] +// FastlaneRunnerAPIVersion [0.9.73]