Verifies min/max OS version before downloading app + asks user to download older app version if necessary

This commit is contained in:
nythepegasus
2024-05-09 01:38:45 -04:00
committed by ny
parent a6ff416067
commit 983355d356
4 changed files with 127 additions and 53 deletions

View File

@@ -0,0 +1,14 @@
//
// String+SideStore.swift
// AltStoreCore
//
// Created by nythepegasus on 5/9/24.
//
import Foundation
public extension String {
init(formatted: String, comment: String? = nil, _ args: String...) {
self.init(format: NSLocalizedString(formatted, comment: comment ?? ""), args)
}
}