summaryrefslogtreecommitdiff
path: root/composeApp/src/androidMain/kotlin/coffee/liz/abstractionengine/Platform.android.kt
diff options
context:
space:
mode:
Diffstat (limited to 'composeApp/src/androidMain/kotlin/coffee/liz/abstractionengine/Platform.android.kt')
-rw-r--r--composeApp/src/androidMain/kotlin/coffee/liz/abstractionengine/Platform.android.kt4
1 files changed, 1 insertions, 3 deletions
diff --git a/composeApp/src/androidMain/kotlin/coffee/liz/abstractionengine/Platform.android.kt b/composeApp/src/androidMain/kotlin/coffee/liz/abstractionengine/Platform.android.kt
index 3ab6a6a..c9dd6cb 100644
--- a/composeApp/src/androidMain/kotlin/coffee/liz/abstractionengine/Platform.android.kt
+++ b/composeApp/src/androidMain/kotlin/coffee/liz/abstractionengine/Platform.android.kt
@@ -1,9 +1,7 @@
package coffee.liz.abstractionengine
-import android.os.Build
-
class AndroidPlatform : Platform {
- override val name: String = "Android ${Build.VERSION.SDK_INT}"
+ override val needsTouchscreenControls = true
}
actual fun getPlatform(): Platform = AndroidPlatform() \ No newline at end of file