Yattee v2 rewrite

This commit is contained in:
Arkadiusz Fal
2026-02-08 18:31:16 +01:00
parent 20d0cfc0c7
commit 05f921d605
1043 changed files with 163875 additions and 68430 deletions

View File

@@ -0,0 +1,36 @@
import Foundation
/// Centralized app identifiers - single source of truth for all app-wide identifiers.
enum AppIdentifiers {
// MARK: - Base Identifier
static let bundleIdentifier = "stream.yattee.app"
// MARK: - iCloud
static var iCloudContainer: String {
"iCloud.\(bundleIdentifier)"
}
// MARK: - Background Tasks
static var backgroundFeedRefresh: String {
"\(bundleIdentifier).feedRefresh"
}
// MARK: - User Activities (Handoff)
static var handoffActivityType: String {
"\(bundleIdentifier).activity"
}
// MARK: - URL Sessions
static let downloadSession = "stream.yattee.downloads"
// MARK: - Logging
static var logSubsystem: String {
bundleIdentifier
}
}