2019-05-30 17:10:50 -07:00
|
|
|
//
|
|
|
|
|
// Bundle+AltStore.swift
|
|
|
|
|
// AltStore
|
|
|
|
|
//
|
|
|
|
|
// Created by Riley Testut on 5/30/19.
|
|
|
|
|
// Copyright © 2019 Riley Testut. All rights reserved.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
|
|
|
|
|
|
public extension Bundle
|
|
|
|
|
{
|
|
|
|
|
struct Info
|
|
|
|
|
{
|
|
|
|
|
public static let deviceID = "ALTDeviceID"
|
2019-08-01 10:45:54 -07:00
|
|
|
public static let serverID = "ALTServerID"
|
2019-06-25 14:26:09 -07:00
|
|
|
public static let appGroups = "ALTAppGroups"
|
2019-06-04 13:53:21 -07:00
|
|
|
|
|
|
|
|
public static let urlTypes = "CFBundleURLTypes"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public extension Bundle
|
|
|
|
|
{
|
|
|
|
|
var infoPlistURL: URL {
|
|
|
|
|
let infoPlistURL = self.bundleURL.appendingPathComponent("Info.plist")
|
|
|
|
|
return infoPlistURL
|
2019-05-30 17:10:50 -07:00
|
|
|
}
|
|
|
|
|
}
|