Initial commit

(Multiplatform project template)
This commit is contained in:
Christian Basler
2024-04-29 17:14:43 +02:00
commit 1b9c8633c9
38 changed files with 949 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()