Skip to content

Commit

Permalink
Updating the libraries versions
Browse files Browse the repository at this point in the history
  • Loading branch information
nkuppan committed Sep 23, 2024
1 parent 4b1a2dd commit f59bbc8
Show file tree
Hide file tree
Showing 9 changed files with 80 additions and 40 deletions.
77 changes: 66 additions & 11 deletions .idea/other.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import androidx.compose.foundation.layout.Arrangement
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.Row
import androidx.compose.foundation.layout.Spacer
import androidx.compose.foundation.layout.WindowInsets
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.height
import androidx.compose.foundation.layout.padding
Expand Down Expand Up @@ -34,7 +33,6 @@ fun DeleteDialogItem(
) {
ModalBottomSheet(
onDismissRequest = { dismiss.invoke() },
windowInsets = WindowInsets(0.dp),
containerColor = MaterialTheme.colorScheme.background,
tonalElevation = 0.dp,
) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ package com.naveenapps.expensemanager.core.designsystem.components
import android.util.Log
import androidx.compose.foundation.clickable
import androidx.compose.foundation.layout.Row
import androidx.compose.foundation.layout.WindowInsets
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.layout.size
import androidx.compose.foundation.layout.wrapContentSize
Expand Down Expand Up @@ -73,7 +72,6 @@ fun IconAndColorComponent(
onDismissRequest = {
sheetSelection = SelectionType.NONE
},
windowInsets = WindowInsets(0.dp),
containerColor = MaterialTheme.colorScheme.background,
tonalElevation = 0.dp,
) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@ fun BudgetCreateScreen(
}
},
sheetState = bottomSheetState,
windowInsets = WindowInsets(0.dp),
containerColor = MaterialTheme.colorScheme.background,
tonalElevation = 0.dp,
) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import androidx.compose.foundation.clickable
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.Row
import androidx.compose.foundation.layout.Spacer
import androidx.compose.foundation.layout.WindowInsets
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.padding
Expand Down Expand Up @@ -167,7 +166,6 @@ fun ExportScreen() {
}
},
sheetState = bottomSheetState,
windowInsets = WindowInsets(0.dp),
containerColor = MaterialTheme.colorScheme.background,
tonalElevation = 0.dp,
) {
Expand Down Expand Up @@ -261,7 +259,6 @@ private fun ExportScreenContent(
showBottomSheet = false
},
sheetState = bottomSheetState,
windowInsets = WindowInsets(0.dp),
containerColor = MaterialTheme.colorScheme.background,
tonalElevation = 0.dp,
) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import androidx.compose.foundation.horizontalScroll
import androidx.compose.foundation.layout.Arrangement
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.Row
import androidx.compose.foundation.layout.WindowInsets
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.height
import androidx.compose.foundation.layout.padding
Expand Down Expand Up @@ -54,7 +53,6 @@ fun FilterView(
viewModel.processAction(FilterAction.DismissDateFilter)
},
sheetState = bottomSheetState,
windowInsets = WindowInsets(0.dp),
containerColor = MaterialTheme.colorScheme.background,
tonalElevation = 0.dp,
) {
Expand All @@ -72,7 +70,6 @@ fun FilterView(
viewModel.processAction(FilterAction.DismissTypeFilter)
},
sheetState = bottomSheetState,
windowInsets = WindowInsets(0.dp),
containerColor = MaterialTheme.colorScheme.background,
tonalElevation = 0.dp,
) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,6 @@ private fun AdvancedSettingsScaffoldView(
}
},
sheetState = bottomSheetState,
windowInsets = WindowInsets(0.dp),
containerColor = MaterialTheme.colorScheme.background,
tonalElevation = 0.dp,
) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import androidx.compose.foundation.clickable
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.Row
import androidx.compose.foundation.layout.Spacer
import androidx.compose.foundation.layout.WindowInsets
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.padding
Expand Down Expand Up @@ -165,7 +164,6 @@ private fun AccountSelectionView(
onDismissRequest = {
onAction.invoke(TransactionCreateAction.DismissCategorySelection)
},
windowInsets = WindowInsets(0.dp),
containerColor = MaterialTheme.colorScheme.background,
tonalElevation = 0.dp,
) {
Expand Down Expand Up @@ -195,7 +193,6 @@ private fun CategorySelectionView(
onDismissRequest = {
onAction.invoke(TransactionCreateAction.DismissCategorySelection)
},
windowInsets = WindowInsets(0.dp),
containerColor = MaterialTheme.colorScheme.background,
tonalElevation = 0.dp,
) {
Expand Down
28 changes: 14 additions & 14 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,39 +1,39 @@
[versions]
accompanist = "0.34.0"
androidDesugarJdkLibs = "2.0.4"
androidGradlePlugin = "8.5.1"
androidxActivity = "1.9.1"
androidGradlePlugin = "8.5.2"
androidxActivity = "1.9.2"
androidxAppCompat = "1.7.0"
androidxMaterial = "1.12.0"
androidxBrowser = "1.7.0"
androidxComposeBom = "2024.06.00"
androidxComposeBom = "2024.09.02"
androidxComposeCompiler = "1.5.14"
androidxComposeRuntimeTracing = "1.0.0-beta01"
lottieCompose = "6.4.0"
material3 = "1.2.1"
material3 = "1.3.0"
androidxCore = "1.13.1"
androidxCoreSplashscreen = "1.0.1"
androidxDataStore = "1.1.1"
androidxEspresso = "3.6.1"
androidxHiltNavigationCompose = "1.2.0"
androidxLifecycle = "2.8.4"
androidxMacroBenchmark = "1.2.4"
benchmark = "1.2.4"
androidxLifecycle = "2.8.6"
androidxMacroBenchmark = "1.3.1"
benchmark = "1.3.1"
androidxMetrics = "1.0.0-beta01"
androidxNavigation = "2.8.0-beta06"
androidxProfileinstaller = "1.3.1"
androidxNavigation = "2.8.1"
androidxProfileinstaller = "1.4.0"
androidxSplashScreen = "1.0.1"
androidxStartup = "1.1.1"
androidxStartup = "1.2.0"
androidxTestArchCore = "2.2.0"
androidxTestCore = "1.6.1"
androidxTestExt = "1.2.1"
androidxTestRules = "1.6.1"
androidxTestRunner = "1.6.1"
androidxTestRunner = "1.6.2"
androidxTracing = "1.2.0"
androidxUiAutomator = "2.3.0"
androidxWindowManager = "1.3.0"
androidxWork = "2.9.0"
firebaseBom = "33.1.2"
androidxWork = "2.9.1"
firebaseBom = "33.3.0"
firebaseCrashlyticsPlugin = "3.0.2"
firebasePerfPlugin = "1.4.2"
firebaseDistribution = "5.0.0"
Expand All @@ -51,7 +51,7 @@ kotlinxCoroutines = "1.8.0"
kotlinxDatetime = "0.5.0"
kotlinxSerializationJson = "1.6.3"
ksp = "2.0.0-1.0.21"
lint = "31.5.1"
lint = "31.6.1"
okhttp = "4.12.0"
retrofit = "2.9.0"
retrofitKotlinxSerializationJson = "1.0.0"
Expand Down

0 comments on commit f59bbc8

Please sign in to comment.