mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-09 06:43:25 +01:00
When deactivating an app, AltStore will first install AltBackup in its place. This allows AltBackup to access the (soon to be) inactive app’s sandbox, and backup all files to a shared app group with AltStore. Later when activating, AltStore will again install AltBackup and use it to restore files before installing the actual app again.
16 lines
305 B
Swift
16 lines
305 B
Swift
//
|
|
// UIColor+AltBackup.swift
|
|
// AltBackup
|
|
//
|
|
// Created by Riley Testut on 5/11/20.
|
|
// Copyright © 2020 Riley Testut. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
extension UIColor
|
|
{
|
|
static let altstoreBackground = UIColor(named: "Background")!
|
|
static let altstoreText = UIColor(named: "Text")!
|
|
}
|