- added a check for live tv player, checking if its not playing for a long time. - fixed the apiversion check on splash - Fixed the guest user issue, if no internet connect and app is started. - fixed woka fm issue for google and normal ads.
19 lines
378 B
Swift
19 lines
378 B
Swift
//
|
|
// AnalyticsEventKeys.swift
|
|
// WOKA
|
|
//
|
|
// Created by MacBook Pro on 29/07/24.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
extension K{
|
|
struct AnalyticsEventKeys{
|
|
static var guest_login_iOS = "guest_login_iOS"
|
|
static var user_signup_iOS = "user_signup_iOS"
|
|
static var new_user_iOS = "new_user_iOS"
|
|
static var engaged_users_iOS = "engaged_users_iOS"
|
|
}
|
|
}
|
|
|