Infer beta build from App Store receipt URL

This commit is contained in:
Davide De Rosa 2019-11-02 11:42:33 +01:00
parent 02d9d860b3
commit c938023483

View File

@ -28,7 +28,13 @@ import PassepartoutCore
extension AppConstants {
class Flags {
static var isBeta = false
static var isBeta: Bool {
#if targetEnvironment(simulator)
return true
#else
return Bundle.main.appStoreReceiptURL?.lastPathComponent == "sandboxReceipt"
#endif
}
static var isMockVPN = false {
didSet {