不跟系统的暗黑模式,保持light模式;增加本地日志的读取;接入firebase

This commit is contained in:
oscarz
2024-08-29 18:01:49 +08:00
parent 6d6776b9fd
commit 8500300d18
34 changed files with 25575 additions and 1523 deletions

View File

@ -88,3 +88,20 @@ class GlobalEnvironment: ObservableObject {
//
let globalEnvironment = GlobalEnvironment()
class GlobalAnalyticsEvents: ObservableObject {
let eventPurchase = "purchase"
let eventEnterPurchase = "enter_purchase_page"
let keyPurchaseEntry = "purchase_entry_point"
let keyPurchaseItem = "purchase_product_id"
let keyDeviceID = "device_id"
let valEntryBuyProBtn = "buy_pro_btn"
let valEntrySettingsBtn = "settings_buy_btn"
}
let globalAnalyticsEvents = GlobalAnalyticsEvents()