Files
YAEP/composeApp/src/androidMain/kotlin/Platform.android.kt

7 lines
184 B
Kotlin
Raw Normal View History

import android.os.Build
class AndroidPlatform : Platform {
override val name: String = "Android ${Build.VERSION.SDK_INT}"
}
actual fun getPlatform(): Platform = AndroidPlatform()