|
|
@@ -9,8 +9,13 @@ enum AppStoreConfig {
|
|
|
static let bundleIdentifier = "com.printer-app-all-printers"
|
|
|
|
|
|
/// Numeric Mac App Store ID from App Store Connect (General → App Information → Apple ID).
|
|
|
- /// Example: "1234567890". Leave empty until the app is live on the App Store.
|
|
|
- static let appStoreID = ""
|
|
|
+ static let appStoreID = "6785834649"
|
|
|
+
|
|
|
+ /// Mac App Store listing URL.
|
|
|
+ static var appStoreURL: URL? {
|
|
|
+ guard !appStoreID.isEmpty else { return nil }
|
|
|
+ return URL(string: "https://apps.apple.com/app/id\(appStoreID)")
|
|
|
+ }
|
|
|
|
|
|
/// Direct write-review link for the manual Settings action.
|
|
|
static var appStoreReviewURL: URL? {
|