Skip to content

Commit

Permalink
fix: maven repository 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
anymate98 committed Jan 15, 2024
1 parent 51f413f commit d12fc5f
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 184 deletions.
4 changes: 4 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
gradlePluginPortal()
maven { setUrl("https://jitpack.io") }
}
dependencies {
classpath("org.jetbrains.kotlin:kotlin-serialization:${Versions.kotlin_stdlib_jdk}")
Expand All @@ -17,6 +20,7 @@ allprojects {
repositories {
google()
mavenCentral()
gradlePluginPortal()
maven { setUrl("https://jitpack.io") }
}
}
Expand Down
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 d12fc5f

Please sign in to comment.