Files
SideStore/SideStoreApp/Sources/SideStoreAppKit/ALTApplication+AltStoreApp.swift
2023-03-10 19:30:59 -05:00

19 lines
422 B
Swift

//
// ALTApplication+AltStoreApp.swift
// AltStore
//
// Created by Riley Testut on 11/11/20.
// Copyright © 2020 Riley Testut. All rights reserved.
//
import AltSign
extension ALTApplication {
static let altstoreBundleID = Bundle.Info.appbundleIdentifier
var isAltStoreApp: Bool {
let isAltStoreApp = bundleIdentifier.contains(ALTApplication.altstoreBundleID)
return isAltStoreApp
}
}