fastlane/swift/PrecheckfileProtocol.swift in fastlane-2.158.0 vs fastlane/swift/PrecheckfileProtocol.swift in fastlane-2.159.0
- old
+ new
@@ -1,6 +1,9 @@
-protocol PrecheckfileProtocol: class {
+// PrecheckfileProtocol.swift
+// Copyright (c) 2020 FastlaneTools
+
+public protocol PrecheckfileProtocol: class {
/// The bundle identifier of your app
var appIdentifier: String { get }
/// Your Apple ID Username
var username: String { get }
@@ -22,11 +25,11 @@
/// using text indicating that your IAP is free
var freeStuffInIap: String? { get }
}
-extension PrecheckfileProtocol {
+public 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" }
@@ -35,6 +38,6 @@
var freeStuffInIap: String? { return nil }
}
// Please don't remove the lines below
// They are used to detect outdated files
-// FastlaneRunnerAPIVersion [0.9.36]
+// FastlaneRunnerAPIVersion [0.9.38]