fastlane/swift/PrecheckfileProtocol.swift in fastlane-2.157.4 vs fastlane/swift/PrecheckfileProtocol.swift in fastlane-2.158.0

- old
+ new

@@ -9,10 +9,13 @@ var teamId: String? { get } /// The name of your App Store Connect team if you're in multiple teams var teamName: String? { get } + /// The platform to use (optional) + var platform: String { get } + /// The default rule level unless otherwise configured var defaultRuleLevel: String { get } /// Should check in-app purchases? var includeInAppPurchases: Bool { get } @@ -24,13 +27,14 @@ extension PrecheckfileProtocol { var appIdentifier: String { return "" } var username: String { return "" } var teamId: String? { return nil } var teamName: String? { return nil } + var platform: String { return "ios" } var defaultRuleLevel: String { return "error" } var includeInAppPurchases: Bool { return true } var freeStuffInIap: String? { return nil } } // Please don't remove the lines below // They are used to detect outdated files -// FastlaneRunnerAPIVersion [0.9.35] +// FastlaneRunnerAPIVersion [0.9.36]