Files
SideStore/SideStoreApp/Sources/SideUIShared/ALTApplication+AltStoreApp.swift
Joseph Mattello c4c2d17ffc snapshot
Signed-off-by: Joseph Mattello <mail@joemattiello.com>
2023-04-02 02:28:12 -04:00

20 lines
443 B
Swift

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