[AltServer] Supports sideloading .ipa files directly to iOS devices

This commit is contained in:
Riley Testut
2020-11-11 17:25:16 -08:00
parent 66ef234f02
commit bb3b039672
5 changed files with 172 additions and 74 deletions

View File

@@ -0,0 +1,19 @@
//
// 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.rileytestut.AltStore"
var isAltStoreApp: Bool {
let isAltStoreApp = self.bundleIdentifier.contains(ALTApplication.altstoreBundleID)
return isAltStoreApp
}
}