mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-05-17 15:32:01 +00:00
11 lines
No EOL
294 B
Kotlin
11 lines
No EOL
294 B
Kotlin
package com.nuvio.app
|
|
|
|
import platform.UIKit.UIDevice
|
|
|
|
class IOSPlatform: Platform {
|
|
override val name: String = UIDevice.currentDevice.systemName() + " " + UIDevice.currentDevice.systemVersion
|
|
}
|
|
|
|
actual fun getPlatform(): Platform = IOSPlatform()
|
|
|
|
internal actual val isIos: Boolean = true |