refactor to SideStoreAppKit

This commit is contained in:
Joe Mattiello
2023-03-01 19:09:33 -05:00
parent df5b0c3af1
commit c28a45f100
92 changed files with 145 additions and 120 deletions

View File

@@ -0,0 +1,18 @@
//
// 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
}
}