diff --git a/.gitignore b/.gitignore
index 386fbcf..4e1167a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -38,19 +38,7 @@ captures/
# IntelliJ
*.iml
-.idea/workspace.xml
-.idea/tasks.xml
-.idea/gradle.xml
-.idea/assetWizardSettings.xml
-.idea/dictionaries
-.idea/libraries
-.idea/misc.xml
-.idea/Project_Default.xml
-# Android Studio 3 in .gitignore file.
-.idea/caches
-.idea/modules.xml
-# Comment next line if keeping position of elements in Navigation Editor is relevant for you
-.idea/navEditor.xml
+.idea
# Keystore files
# Uncomment the following lines if you do not want to check your keystore files in.
diff --git a/.idea/compiler.xml b/.idea/compiler.xml
index b589d56..b86273d 100644
--- a/.idea/compiler.xml
+++ b/.idea/compiler.xml
@@ -1,6 +1,6 @@
-
+
\ No newline at end of file
diff --git a/.idea/kotlinc.xml b/.idea/kotlinc.xml
index 8d81632..03fcfb7 100644
--- a/.idea/kotlinc.xml
+++ b/.idea/kotlinc.xml
@@ -1,6 +1,6 @@
-
+
\ No newline at end of file
diff --git a/app/build.gradle.kts b/app/build.gradle.kts
index 65b97d3..bd7212a 100644
--- a/app/build.gradle.kts
+++ b/app/build.gradle.kts
@@ -1,5 +1,3 @@
-@file:Suppress("UnstableApiUsage")
-
plugins {
id("com.android.application")
kotlin("android")
@@ -51,18 +49,18 @@ android {
}
dependencies {
- implementation("androidx.activity:activity-compose:1.11.0")
- implementation("androidx.compose.material:material:1.9.2")
- implementation("androidx.compose.ui:ui:1.9.2")
- implementation("androidx.compose.ui:ui-tooling-preview:1.9.2")
+ implementation("androidx.activity:activity-compose:1.12.1")
+ implementation("androidx.compose.material:material:1.10.0")
+ implementation("androidx.compose.ui:ui:1.10.0")
+ implementation("androidx.compose.ui:ui-tooling-preview:1.10.0")
implementation("androidx.core:core-ktx:1.17.0")
- implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.9.4")
+ implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.10.0")
- implementation("com.google.android.gms:play-services-ads:24.6.0")
+ implementation("com.google.android.gms:play-services-ads:24.8.0")
implementation("io.didomi.sdk:android:2.34.0")
- debugImplementation("androidx.compose.ui:ui-test-manifest:1.9.2")
- debugImplementation("androidx.compose.ui:ui-tooling:1.9.2")
+ debugImplementation("androidx.compose.ui:ui-test-manifest:1.10.0")
+ debugImplementation("androidx.compose.ui:ui-tooling:1.10.0")
}
diff --git a/build.gradle.kts b/build.gradle.kts
index e846afe..b5e8c37 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -1,8 +1,8 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
- id("com.android.application") version "8.13.0" apply false
- id("org.jetbrains.kotlin.android") version "2.2.20" apply false
- id("org.jetbrains.kotlin.plugin.compose") version "2.2.20" apply false
+ id("com.android.application") version "8.13.1" apply false
+ id("org.jetbrains.kotlin.android") version "2.2.21" apply false
+ id("org.jetbrains.kotlin.plugin.compose") version "2.2.21" apply false
}
tasks.register("clean", Delete::class) {