2020-11-11 17:25:16 -08:00
|
|
|
//
|
|
|
|
|
// ALTApplication+AltStoreApp.swift
|
|
|
|
|
// AltStore
|
|
|
|
|
//
|
|
|
|
|
// Created by Riley Testut on 11/11/20.
|
|
|
|
|
// Copyright © 2020 Riley Testut. All rights reserved.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
import AltSign
|
|
|
|
|
|
2023-03-01 00:48:36 -05:00
|
|
|
extension ALTApplication {
|
2022-12-30 16:51:36 -05:00
|
|
|
static let altstoreBundleID = Bundle.Info.appbundleIdentifier
|
2023-03-01 00:48:36 -05:00
|
|
|
|
2020-11-11 17:25:16 -08:00
|
|
|
var isAltStoreApp: Bool {
|
2023-03-01 00:48:36 -05:00
|
|
|
let isAltStoreApp = bundleIdentifier.contains(ALTApplication.altstoreBundleID)
|
2020-11-11 17:25:16 -08:00
|
|
|
return isAltStoreApp
|
|
|
|
|
}
|
|
|
|
|
}
|