Skip to content

Commit

Permalink
update libs
Browse files Browse the repository at this point in the history
  • Loading branch information
softartdev committed May 10, 2023
1 parent de1acc2 commit 3153278
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion android-compose-app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ dependencies {
implementation(compose.material)
implementation(compose.preview)
debugImplementation(compose.uiTooling)
debugImplementation("androidx.compose.ui:ui-test-manifest:1.4.2")
debugImplementation("androidx.compose.ui:ui-test-manifest:1.4.3")
implementation(libs.decompose)
implementation(libs.koin.android)
implementation(platform(libs.firebase.bom))
Expand Down
1 change: 1 addition & 0 deletions android-compose-app/proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
-keepclassmembers class net.sqlcipher.database.SQLiteCompiledSql { *; }
-keepclassmembers class net.sqlcipher.database.SQLiteQuery { *; }
-keepclassmembers class net.sqlcipher.database.SQLiteStatement { *; }
-dontwarn net.sqlcipher.database.SQLiteException

-dontwarn kotlinx.serialization.KSerializer
-dontwarn kotlinx.serialization.Serializable
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ buildscript {
dependencies {
classpath(kotlin("gradle-plugin", libs.versions.kotlin.get()))
classpath(libs.sqlDelight.gradlePlugin)
classpath("com.android.tools.build:gradle:8.0.0")
classpath("com.android.tools.build:gradle:8.0.1")
classpath("com.google.gms:google-services:4.3.15")
classpath("com.google.firebase:firebase-crashlytics-gradle:2.9.5")
classpath("com.google.android.gms:oss-licenses-plugin:0.10.6")
Expand Down
6 changes: 3 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ coroutines = "1.6.4"
sqlDelight = "1.5.5"
androidxSqlite = "2.3.1"
saferoom = "1.3.0"
androidSqlCipher = "4.5.3"
androidSqlCipher = "4.5.4"
decompose = "2.0.0-compose-experimental-alpha-02"
koin = "3.4.0"
kotlinx-datetime = "0.4.0"
Expand All @@ -25,8 +25,8 @@ androidxArch = "2.2.0"
androidxTestExt = "1.1.5"
androidxTest = "1.5.2"
androidxTestOrchestrator = "1.4.2"
googleAndroidMaterial = "1.8.0"
firebase = "31.5.0"
googleAndroidMaterial = "1.9.0"
firebase = "32.0.0"
leakCanary = "2.10"
junit = "4.13.2"
mockito = "5.2.0"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.softartdev.notedelight.shared.presentation.main

import android.database.sqlite.SQLiteException
import androidx.arch.core.executor.testing.InstantTaskExecutorRule
import app.cash.turbine.test
import com.softartdev.notedelight.shared.data.NoteUseCase
Expand All @@ -9,7 +10,6 @@ import kotlinx.coroutines.ExperimentalCoroutinesApi
import kotlinx.coroutines.flow.flow
import kotlinx.coroutines.flow.flowOf
import kotlinx.coroutines.test.runTest
import net.sqlcipher.database.SQLiteException
import org.junit.Assert.assertEquals
import org.junit.Before
import org.junit.Rule
Expand Down

0 comments on commit 3153278

Please sign in to comment.