Files
SideStore/SideStoreApp/Sources/SideStoreAppKit/ALTApplication+AltStoreApp.swift

19 lines
422 B
Swift
Raw Normal View History

//
// 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 {
static let altstoreBundleID = Bundle.Info.appbundleIdentifier
2023-03-01 00:48:36 -05:00
var isAltStoreApp: Bool {
2023-03-01 00:48:36 -05:00
let isAltStoreApp = bundleIdentifier.contains(ALTApplication.altstoreBundleID)
return isAltStoreApp
}
}