initial KMP setup

This commit is contained in:
Daniel Yrovas 2024-06-06 12:56:03 +10:00
commit fbfaf9be00
47 changed files with 1469 additions and 0 deletions

View file

@ -0,0 +1,7 @@
import android.os.Build
class AndroidPlatform : Platform {
override val name: String = "Android ${Build.VERSION.SDK_INT}"
}
actual fun getPlatform(): Platform = AndroidPlatform()