mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-09 06:43:25 +01:00
* Adds a Custom default source and allows Updating app via ota. Co-authored-by: Spidy123222
20 lines
424 B
Swift
20 lines
424 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 = "com.SideStore.AltStore"
|
|
|
|
var isAltStoreApp: Bool {
|
|
let isAltStoreApp = self.bundleIdentifier.contains(ALTApplication.altstoreBundleID)
|
|
return isAltStoreApp
|
|
}
|
|
}
|