From 98e0c1cf3b2c44711434344a304c5b9845f32b02 Mon Sep 17 00:00:00 2001 From: abdullah Date: Tue, 18 Jul 2023 17:09:53 +0300 Subject: [PATCH] Fix dependencies. --- app/build.gradle | 8 ++++---- build.gradle | 6 +++--- extension/build.gradle | 14 +++++++------- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index ea043f2..e87bbe9 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -29,18 +29,18 @@ android { } } compileOptions { - sourceCompatibility JavaVersion.VERSION_11 - targetCompatibility JavaVersion.VERSION_11 + sourceCompatibility JavaVersion.VERSION_17 + targetCompatibility JavaVersion.VERSION_17 } kotlinOptions { - jvmTarget = '1.8' + jvmTarget = '17' } buildFeatures { viewBinding true compose true } composeOptions { - kotlinCompilerExtensionVersion = "1.3.2" + kotlinCompilerExtensionVersion = "1.4.8" } packagingOptions { resources { diff --git a/build.gradle b/build.gradle index d3d03cb..2d22cdb 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,6 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { - ext.kotlin_version = "1.7.20" + ext.kotlin_version = "1.8.22" repositories { google() mavenCentral() @@ -9,8 +9,8 @@ buildscript { } } dependencies { - classpath 'com.android.tools.build:gradle:8.0.0' - classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.20' + classpath 'com.android.tools.build:gradle:8.0.2' + classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.22' classpath 'com.google.android.libraries.mapsplatform.secrets-gradle-plugin:secrets-gradle-plugin:2.0.1' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files diff --git a/extension/build.gradle b/extension/build.gradle index 650a5b3..d13484a 100644 --- a/extension/build.gradle +++ b/extension/build.gradle @@ -21,21 +21,21 @@ android { } } compileOptions { - sourceCompatibility JavaVersion.VERSION_11 - targetCompatibility JavaVersion.VERSION_11 + sourceCompatibility JavaVersion.VERSION_17 + targetCompatibility JavaVersion.VERSION_17 } kotlinOptions { - jvmTarget = '1.8' + jvmTarget = '17' } namespace 'com.mobven.extension' } dependencies { - implementation 'androidx.core:core-ktx:1.9.0' - implementation 'androidx.appcompat:appcompat:1.6.0' - implementation 'com.google.android.material:material:1.7.0' - implementation 'androidx.browser:browser:1.4.0' + implementation 'androidx.core:core-ktx:1.10.1' + implementation 'androidx.appcompat:appcompat:1.6.1' + implementation 'com.google.android.material:material:1.9.0' + implementation 'androidx.browser:browser:1.5.0' testImplementation 'junit:junit:4.13.2' androidTestImplementation 'androidx.test.ext:junit:1.1.5' androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'