Test CI
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 25s
Test / test (push) Successful in 19s

This commit is contained in:
2026-08-06 15:52:45 +07:00
commit 4f6c7a099a
63 changed files with 5087 additions and 0 deletions
@@ -0,0 +1,5 @@
package com.digitoolsolutions.app.tes_ci_cd
import androidx.compose.ui.window.ComposeUIViewController
fun MainViewController() = ComposeUIViewController { App() }
@@ -0,0 +1,9 @@
package com.digitoolsolutions.app.tes_ci_cd
import platform.UIKit.UIDevice
class IOSPlatform: Platform {
override val name: String = UIDevice.currentDevice.systemName() + " " + UIDevice.currentDevice.systemVersion
}
actual fun getPlatform(): Platform = IOSPlatform()