Skip to content

Commit

Permalink
refactor : App Module import * 수정 및 컨벤션 적용 후 중복 선언 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
nohjunh committed Oct 19, 2023
1 parent 0a1090f commit 41f7577
Showing 1 changed file with 2 additions and 13 deletions.
15 changes: 2 additions & 13 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -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()
Expand Down Expand Up @@ -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
}
Expand Down

0 comments on commit 41f7577

Please sign in to comment.