- 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.
16 lines
196 B
Swift
16 lines
196 B
Swift
//
|
|
// PlayerStatusEnum.swift
|
|
// WOKA
|
|
//
|
|
// Created by MacBook Pro on 14/10/24.
|
|
//
|
|
|
|
|
|
enum PlayerStatusEnum {
|
|
case playing
|
|
case paused
|
|
case buffering
|
|
case stopped
|
|
case none
|
|
}
|