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

@@ -59,14 +59,14 @@ struct ComplicationView_Previews: PreviewProvider {
let expiredDate = shortExpirationDate.addingTimeInterval(1 * 60 * 60 * 24)
let weekAltstore = AppSnapshot(name: "AltStore",
bundleIdentifier: "com.rileytestut.AltStore",
bundleIdentifier: Bundle.Info.appbundleIdentifier,
expirationDate: shortExpirationDate,
refreshedDate: shortRefreshedDate,
tintColor: .altPrimary,
icon: UIImage(named: "AltStore"))
let yearAltstore = AppSnapshot(name: "AltStore",
bundleIdentifier: "com.rileytestut.AltStore",
bundleIdentifier: Bundle.Info.appbundleIdentifier,
expirationDate: longExpirationDate,
refreshedDate: longRefreshedDate,
tintColor: .altPrimary,

View File

@@ -155,7 +155,7 @@ struct WidgetView_Previews: PreviewProvider {
let longExpirationDate = Calendar.current.date(byAdding: .day, value: 365, to: longRefreshedDate) ?? Date()
let altstore = AppSnapshot(name: "AltStore",
bundleIdentifier: "com.rileytestut.AltStore",
bundleIdentifier: Bundle.Info.appbundleIdentifier,
expirationDate: shortExpirationDate,
refreshedDate: shortRefreshedDate,
tintColor: .altPrimary,