Skip to content

Commit

Permalink
remove nonIos group
Browse files Browse the repository at this point in the history
  • Loading branch information
alexjlockwood committed Oct 21, 2024
1 parent b194757 commit a6943ee
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 16 deletions.
11 changes: 0 additions & 11 deletions composeApp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -94,17 +94,6 @@ kotlin {
implementation(libs.xxfast.kstore.storage)
}
}

@OptIn(ExperimentalKotlinGradlePluginApi::class)
applyDefaultHierarchyTemplate {
common {
group("nonIos") {
withAndroidTarget()
withJvm()
withWasmJs()
}
}
}
}

android {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,7 @@ package com.alexjlockwood.twentyfortyeight.ui
internal actual fun shouldDetectSwipes(): Boolean {
return true
}

internal actual fun shouldCenterAlignTopAppBar(): Boolean {
return false
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,7 @@ package com.alexjlockwood.twentyfortyeight.ui
internal actual fun shouldDetectSwipes(): Boolean {
return false
}

internal actual fun shouldCenterAlignTopAppBar(): Boolean {
return false
}

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,7 @@ import kotlinx.browser.window
internal actual fun shouldDetectSwipes(): Boolean {
return window.navigator.maxTouchPoints > 0
}

internal actual fun shouldCenterAlignTopAppBar(): Boolean {
return false
}

0 comments on commit a6943ee

Please sign in to comment.