Init KMP project, add all files

This commit is contained in:
Digitool Solutions
2026-05-08 08:46:16 +07:00
commit 80a0a1c193
47 changed files with 1491 additions and 0 deletions
@@ -0,0 +1,5 @@
package com.digitoolsolutions.app.torquevaultkmp
import androidx.compose.ui.window.ComposeUIViewController
fun MainViewController() = ComposeUIViewController { App() }
@@ -0,0 +1,9 @@
package com.digitoolsolutions.app.torquevaultkmp
import platform.UIKit.UIDevice
class IOSPlatform: Platform {
override val name: String = UIDevice.currentDevice.systemName() + " " + UIDevice.currentDevice.systemVersion
}
actual fun getPlatform(): Platform = IOSPlatform()