mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-03 13:53:41 +00:00
12 lines
436 B
Swift
12 lines
436 B
Swift
import Foundation
|
|
|
|
public enum OpenClawAppGroup {
|
|
public static let canonicalIdentifier = "group.ai.openclawfoundation.app.shared"
|
|
|
|
public static var identifier: String {
|
|
let raw = Bundle.main.object(forInfoDictionaryKey: "OpenClawAppGroupIdentifier") as? String
|
|
let trimmed = raw?.trimmingCharacters(in: .whitespacesAndNewlines) ?? ""
|
|
return trimmed.isEmpty ? self.canonicalIdentifier : trimmed
|
|
}
|
|
}
|