fastlane/swift/PrecheckfileProtocol.swift in fastlane-2.170.0 vs fastlane/swift/PrecheckfileProtocol.swift in fastlane-2.171.0
- old
+ new
@@ -27,10 +27,13 @@
var defaultRuleLevel: String { get }
/// Should check in-app purchases?
var includeInAppPurchases: Bool { get }
+ /// Should force check live app?
+ var useLive: Bool { get }
+
/// using text indicating that your IAP is free
var freeStuffInIap: String? { get }
}
public extension PrecheckfileProtocol {
@@ -41,11 +44,12 @@
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 useLive: Bool { return false }
var freeStuffInIap: String? { return nil }
}
// Please don't remove the lines below
// They are used to detect outdated files
-// FastlaneRunnerAPIVersion [0.9.49]
+// FastlaneRunnerAPIVersion [0.9.50]