closes #93 redo of bundle id’s from .app

Signed-off-by: Joseph Mattello <mail@joemattiello.com>
This commit is contained in:
Joseph Mattello
2022-12-30 16:51:36 -05:00
committed by Joe Mattiello
parent 989e8c3aa6
commit d797ddd668
9 changed files with 19 additions and 17 deletions

View File

@@ -45,7 +45,7 @@ public class Keychain
{
public static let shared = Keychain()
fileprivate let keychain = KeychainAccess.Keychain(service: "com.rileytestut.AltStore").accessibility(.afterFirstUnlock).synchronizable(true)
fileprivate let keychain = KeychainAccess.Keychain(service: Bundle.Info.appbundleIdentifier).accessibility(.afterFirstUnlock).synchronizable(true)
@KeychainItem(key: "appleIDEmailAddress")
public var appleIDEmailAddress: String?

View File

@@ -11,9 +11,9 @@ import CoreData
public extension Source
{
#if ALPHA
static let altStoreIdentifier = "com.SideStore.SideStore"
static let altStoreIdentifier = Bundle.Info.appbundleIdentifier
#else
static let altStoreIdentifier = "com.SideStore.SideStore"
static let altStoreIdentifier = Bundle.Info.appbundleIdentifier
#endif
#if STAGING

View File

@@ -15,11 +15,11 @@ import AltSign
public extension StoreApp
{
#if ALPHA
static let altstoreAppID = "com.SideStore.SideStore"
static let altstoreAppID = Bundle.Info.appbundleIdentifier
#elseif BETA
static let altstoreAppID = "com.SideStore.SideStore"
static let altstoreAppID = Bundle.Info.appbundleIdentifier
#else
static let altstoreAppID = "com.SideStore.SideStore"
static let altstoreAppID = Bundle.Info.appbundleIdentifier
#endif
static let dolphinAppID = "me.oatmealdome.dolphinios-njb"