Files
kmp-template/composeApp/src/androidMain/kotlin/dev/carlosmartino/triplogic/Platform.android.kt
2025-09-17 14:25:27 -03:00

10 lines
222 B
Kotlin

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