refactor: streamline the repo again and removed unused files from altstore

This commit is contained in:
mahee96
2026-02-22 21:27:31 +05:30
parent 747a9c7b5a
commit 6d4cbf1c59
91 changed files with 3093 additions and 627 deletions

View File

@@ -0,0 +1,34 @@
//
// MinimuxerWrapper.swift
// SideStore
//
// Created by Jackson Coxson on 10/26/22.
//
import Foundation
import minimuxer
var isMinimuxerReady: Bool {
#if targetEnvironment(simulator)
print("isMinimuxerReady property is always true on simulator")
return true
#else
return minimuxer.ready()
#endif
}
func minimuxerStartWithLogger(_ pairingFile: String,_ logPath: String,_ loggingEnabled: Bool) throws {
#if targetEnvironment(simulator)
print("minimuxerStartWithLogger(\(pairingFile), \(logPath), \(loggingEnabled) is no-op on simulator")
#else
try minimuxer.startWithLogger(pairingFile, logPath, loggingEnabled)
#endif
}
func targetMinimuxerAddress() {
#if targetEnvironment(simulator)
print("targetMinimuxerAddress() is no-op on simulator")
#else
minimuxer.target_minimuxer_address()
#endif
}