finance/composeApp/src/androidMain/kotlin/Platform.android.kt
2024-06-06 12:56:03 +10:00

7 lines
No EOL
184 B
Kotlin

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