Files
kmp-template/composeApp/src/androidMain/kotlin/dev/carlosmartino/triplogic/Platform.android.kt

9 lines
221 B
Kotlin
Raw Normal View History

2025-09-17 11:31:16 -03:00
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()