Skip to content

Commit

Permalink
fix: delete build.gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
anymate98 committed Jan 15, 2024
1 parent dee8af1 commit f888426
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 184 deletions.
4 changes: 2 additions & 2 deletions buildSrc/src/main/java/Dependencies.kt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// 디펜던시 업데이트 확인 ./gradlew dependencyUpdates

object Versions {
const val versionCode = 231027000 // yymmdd000
const val versionName = "1.4.1" // https://www.notion.so/chaifinance/QA-Process-d1a4be396337493b81c6e85fff2d5cd6
const val versionCode = 240115000 // yymmdd000
const val versionName = "1.4.2" // https://www.notion.so/chaifinance/QA-Process-d1a4be396337493b81c6e85fff2d5cd6

const val multidex = "2.0.1"
const val kotlin_stdlib_jdk = "1.9.10"
Expand Down
171 changes: 0 additions & 171 deletions sdk/build.gradle

This file was deleted.

21 changes: 10 additions & 11 deletions sdk/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,13 @@ plugins {


android {
compileSdk = 30
buildToolsVersion = "30.0.3"
namespace = "com.iamport.sdk"

compileSdk = 34
buildToolsVersion = "34.0.0"

defaultConfig {
minSdk = 21
targetSdk = 30
// versionCode = Versions.versionCode // yymmdd000
// versionName = Versions.versionName // prod(x.y.z), dev(x.y.z-dev00), poc(x.y.z-poc00)
multiDexEnabled = true

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
Expand Down Expand Up @@ -51,16 +50,16 @@ android {
}

compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}

// buildFeatures {
// dataBinding = true
// }
buildFeatures {
dataBinding = true
}

lint {
isAbortOnError = false
abortOnError = false
}

sourceSets {
Expand Down

0 comments on commit f888426

Please sign in to comment.