From 41f757740ccb3e67f02d9ff472ba353424634b34 Mon Sep 17 00:00:00 2001 From: Junhyeok Date: Thu, 19 Oct 2023 15:12:24 +0900 Subject: [PATCH] =?UTF-8?q?refactor=20:=20App=20Module=20import=20*=20?= =?UTF-8?q?=EC=88=98=EC=A0=95=20=EB=B0=8F=20=EC=BB=A8=EB=B2=A4=EC=85=98=20?= =?UTF-8?q?=EC=A0=81=EC=9A=A9=20=ED=9B=84=20=EC=A4=91=EB=B3=B5=20=EC=84=A0?= =?UTF-8?q?=EC=96=B8=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/build.gradle.kts | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 63a038c8..35d63b94 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -1,13 +1,13 @@ import java.io.File import java.io.FileInputStream -import java.util.* +import java.util.Properties plugins { id("nohjunh.android.application") id("nohjunh.android.application.compose") + id("nohjunh.android.hilt") id("com.google.gms.google-services") id("com.google.android.libraries.mapsplatform.secrets-gradle-plugin") - id("nohjunh.android.hilt") } val keystoreProperties = Properties() @@ -79,21 +79,10 @@ android { ) } } - - compileOptions { - sourceCompatibility = JavaVersion.VERSION_17 - targetCompatibility = JavaVersion.VERSION_17 - } - kotlinOptions { - jvmTarget = JavaVersion.VERSION_17.toString() - } buildFeatures { compose = true buildConfig = true } - composeOptions { - kotlinCompilerExtensionVersion = Configurations.COMPOSE - } kapt { correctErrorTypes = true }