Files
honeyDueKMP/composeApp/src/androidMain/kotlin/com/example/mycrib/Platform.android.kt
Trey t 78c62cfc52 Initial commit: Kotlin Multiplatform project setup
🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-04 09:15:49 -06:00

9 lines
212 B
Kotlin

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