Files
YAEP/composeApp/src/androidMain/kotlin/Platform.android.kt
Christian Basler 1b9c8633c9 Initial commit
(Multiplatform project template)
2024-04-29 17:14:43 +02:00

7 lines
184 B
Kotlin

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