From d26b83a8514d9329151e54c3f0e818a3e96f7769 Mon Sep 17 00:00:00 2001 From: Vitor Pamplona Date: Fri, 26 May 2023 12:19:38 -0400 Subject: [PATCH] Updating kotlin dependencies. --- .idea/kotlinc.xml | 2 +- app/build.gradle | 3 ++- build.gradle | 8 ++++---- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.idea/kotlinc.xml b/.idea/kotlinc.xml index 0fc311313..217e5c51f 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 b/app/build.gradle index 60376f023..0fb95ea62 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -24,6 +24,7 @@ android { buildTypes { release { + // TODO: Make sure all of JSON parsers work when activating these. //minifyEnabled true //proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' resValue "string", "app_name", "@string/app_name_release" @@ -71,7 +72,7 @@ android { } composeOptions { - kotlinCompilerExtensionVersion "1.4.3" + kotlinCompilerExtensionVersion "1.4.7" } packagingOptions { diff --git a/build.gradle b/build.gradle index 0a999c817..e8f7522c3 100644 --- a/build.gradle +++ b/build.gradle @@ -14,10 +14,10 @@ buildscript { } }// Top-level build file where you can add configuration options common to all sub-projects/modules. plugins { - id 'com.android.application' version '8.0.1' apply false - id 'com.android.library' version '8.0.1' apply false - id 'org.jetbrains.kotlin.android' version '1.8.10' apply false - id 'org.jetbrains.kotlin.jvm' version '1.8.10' apply false + id 'com.android.application' version '8.0.2' apply false + id 'com.android.library' version '8.0.2' apply false + id 'org.jetbrains.kotlin.android' version '1.8.21' apply false + id 'org.jetbrains.kotlin.jvm' version '1.8.21' apply false } task installGitHook(type: Copy) {