Skip to content

Commit 41757f5

Browse files
committed
Fix lint
1 parent 42dd8fa commit 41757f5

5 files changed

Lines changed: 9 additions & 5 deletions

File tree

build-logic/plugins/convention/src/main/kotlin/com/flipperdevices/buildlogic/ApkConfig.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ object ApkConfig {
88

99
const val MIN_SDK_VERSION = 26
1010

11-
const val TARGET_SDK_VERSION = 35
12-
const val COMPILE_SDK_VERSION = 35
11+
const val TARGET_SDK_VERSION = 36
12+
const val COMPILE_SDK_VERSION = 36
1313
const val ROBOELECTRIC_SDK_VERSION = 34
1414

1515
private const val DEBUG_VERSION = "DEBUG_VERSION"

components/filemngr/upload/impl/build.gradle.kts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,10 @@ commonDependencies {
6767
implementation(libs.kotlin.immutable.collections)
6868
}
6969

70+
androidDependencies {
71+
implementation(libs.compose.activity)
72+
}
73+
7074
commonTestDependencies {
7175
implementation(projects.components.core.test)
7276
implementation(libs.junit)

components/remote-controls/grid/remote/impl/src/main/kotlin/com/flipperdevices/remotecontrols/impl/grid/remote/composable/components/RemoteGridComposableContent.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ internal fun RemoteGridComposableContent(
2727
targetState = model,
2828
modifier = modifier,
2929
transitionSpec = { fadeIn().togetherWith(fadeOut()) },
30-
contentKey = { model.contentKey }
30+
contentKey = { it.contentKey }
3131
) { animatedModel ->
3232
when (animatedModel) {
3333
is RemoteGridComponent.Model.Error -> {

components/remote-controls/grid/saved/impl/src/main/kotlin/com/flipperdevices/remotecontrols/impl/grid/local/composable/components/LocalGridComposableContent.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ internal fun LocalGridComposableContent(
3737
targetState = model,
3838
modifier = modifier,
3939
transitionSpec = { fadeIn().togetherWith(fadeOut()) },
40-
contentKey = { model.contentKey }
40+
contentKey = { it.contentKey }
4141
) { animatedModel ->
4242
when (animatedModel) {
4343
// We leave screen on error

components/wearable/sync/wear/impl/src/main/java/com/flipperdevices/wearable/sync/wear/impl/viewmodel/KeysListViewModel.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import android.annotation.SuppressLint
44
import android.app.Application
55
import android.content.Intent
66
import android.net.Uri
7+
import androidx.concurrent.futures.await
78
import androidx.wear.phone.interactions.PhoneTypeHelper
89
import androidx.wear.remote.interactions.RemoteActivityHelper
910
import androidx.wear.widget.ConfirmationOverlay
@@ -33,7 +34,6 @@ import kotlinx.coroutines.flow.asStateFlow
3334
import kotlinx.coroutines.flow.combine
3435
import kotlinx.coroutines.flow.launchIn
3536
import kotlinx.coroutines.flow.update
36-
import kotlinx.coroutines.guava.await
3737
import kotlinx.coroutines.launch
3838
import kotlinx.coroutines.tasks.await
3939
import javax.inject.Inject

0 commit comments

Comments
 (0)