diff --git a/README.md b/README.md index c080fde..efd2aa0 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@   ![Static Badge](https://img.shields.io/badge/License-GPL--v3-brightgreen) -[![Lint and verify](https://github.com/psuzn/App-deals/actions/workflows/lint.yaml/badge.svg?branch=develop)](https://github.com/psuzn/App-deals/actions/workflows/lint.yaml) +[![CI](https://github.com/psuzn/Play-Deals/actions/workflows/CI.yaml/badge.svg)](https://github.com/psuzn/Play-Deals/actions/workflows/CI.yaml) ![Feature](metadata/en-US/images/featureGraphic.png) diff --git a/androidApp/build.gradle.kts b/androidApp/build.gradle.kts index 9bf282a..b25924a 100644 --- a/androidApp/build.gradle.kts +++ b/androidApp/build.gradle.kts @@ -44,6 +44,9 @@ android { targetCompatibility = JavaVersion.VERSION_17 } + composeOptions { + kotlinCompilerExtensionVersion = libs.versions.compose.compiler.get() + } signingConfigs { getByName("debug") { diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 2a7d491..291ab4d 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -11,7 +11,7 @@ sqldelight = "2.0.0" google-services = "4.4.0" # Libraries -compose-compiler = "1.5.7" +compose-compiler = "1.5.6" accompanist-permissions = "0.32.0" activity-compose = "1.8.2" appcompat = "1.6.1" diff --git a/metadata/de/short_description.txt b/metadata/de/short_description.txt index 8543515..0190852 100644 --- a/metadata/de/short_description.txt +++ b/metadata/de/short_description.txt @@ -1 +1 @@ -Finden Sie die neuesten App-Angebote und Rabatte für kostenpflichtige Apps und Spiele. +Finden Sie die neuesten App-Angebote und Rabatte für kostenpflichtige Apps. diff --git a/shared/src/commonMain/kotlin/me/sujanpoudel/playdeals/common/PlayDealApp.kt b/shared/src/commonMain/kotlin/me/sujanpoudel/playdeals/common/PlayDealApp.kt index a076f94..4c3c0bb 100644 --- a/shared/src/commonMain/kotlin/me/sujanpoudel/playdeals/common/PlayDealApp.kt +++ b/shared/src/commonMain/kotlin/me/sujanpoudel/playdeals/common/PlayDealApp.kt @@ -2,12 +2,6 @@ package me.sujanpoudel.playdeals.common import androidx.compose.foundation.background import androidx.compose.foundation.layout.Box -import androidx.compose.foundation.layout.WindowInsets -import androidx.compose.foundation.layout.navigationBars -import androidx.compose.foundation.layout.statusBars -import androidx.compose.foundation.layout.systemBars -import androidx.compose.foundation.layout.union -import androidx.compose.foundation.layout.windowInsetsPadding import androidx.compose.material3.MaterialTheme import androidx.compose.runtime.Composable import androidx.compose.runtime.CompositionLocalProvider @@ -97,12 +91,7 @@ fun PlayDealsApp() { AppTheme(preferences) { Box( modifier = Modifier - .background(MaterialTheme.colorScheme.background) - .windowInsetsPadding( - WindowInsets.navigationBars - .union(WindowInsets.statusBars) - .union(WindowInsets.systemBars), - ), + .background(MaterialTheme.colorScheme.background), ) { NavHost(navGraph) } diff --git a/shared/src/commonMain/kotlin/me/sujanpoudel/playdeals/common/ui/components/common/ScaffoldToolbar.kt b/shared/src/commonMain/kotlin/me/sujanpoudel/playdeals/common/ui/components/common/ScaffoldToolbar.kt index d435be3..5ed92e8 100644 --- a/shared/src/commonMain/kotlin/me/sujanpoudel/playdeals/common/ui/components/common/ScaffoldToolbar.kt +++ b/shared/src/commonMain/kotlin/me/sujanpoudel/playdeals/common/ui/components/common/ScaffoldToolbar.kt @@ -82,7 +82,7 @@ object ScaffoldToolbar { ) { val navigator = Navigator.current CenterAlignedTopAppBar( - modifier = modifier.windowInsetsPadding(WindowInsets(top = 10.dp)), + modifier = modifier.windowInsetsPadding(WindowInsets(top = 20.dp)), title = { ToolbarTitle(title) }, navigationIcon = {