Skip to content

Commit baa8f72

Browse files
yonghanJubngsh
andcommitted
🔧 build.gradle 컨벤션 맞게 수정
Co-authored-by: bngsh <[email protected]>
1 parent 3578a6f commit baa8f72

File tree

2 files changed

+19
-19
lines changed

2 files changed

+19
-19
lines changed

runningdata/build.gradle

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
plugins {
2-
id 'com.android.library'
3-
id 'org.jetbrains.kotlin.android'
2+
id "com.android.library"
3+
id "org.jetbrains.kotlin.android"
44
}
55

66
android {
7-
namespace 'com.whyranoid.runningdata'
7+
namespace "com.whyranoid.runningdata"
88
compileSdk 33
99

1010
defaultConfig {
@@ -18,24 +18,24 @@ android {
1818
buildTypes {
1919
release {
2020
minifyEnabled false
21-
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
21+
proguardFiles getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro"
2222
}
2323
}
2424
compileOptions {
2525
sourceCompatibility JavaVersion.VERSION_1_8
2626
targetCompatibility JavaVersion.VERSION_1_8
2727
}
2828
kotlinOptions {
29-
jvmTarget = '1.8'
29+
jvmTarget = "1.8"
3030
}
3131
}
3232

33-
dependencies {
33+
dependencies {
3434

35-
implementation "androidx.core:core-ktx:$coreKtxVersion"
36-
implementation "androidx.appcompat:appcompat:$appcompatVersion"
37-
implementation "com.google.android.material:material:$materialVersion"
38-
testImplementation "junit:junit:$junitVersion"
39-
androidTestImplementation "androidx.test.ext:junit:$junitUiVersion"
40-
androidTestImplementation "androidx.test.espresso:espresso-core:$espressoCoreVersion"
41-
}
35+
implementation "androidx.core:core-ktx:$coreKtxVersion"
36+
implementation "androidx.appcompat:appcompat:$appcompatVersion"
37+
implementation "com.google.android.material:material:$materialVersion"
38+
testImplementation "junit:junit:$junitVersion"
39+
androidTestImplementation "androidx.test.ext:junit:$junitUiVersion"
40+
androidTestImplementation "androidx.test.espresso:espresso-core:$espressoCoreVersion"
41+
}

settings.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ dependencyResolutionManagement {
2020
}
2121
}
2222
rootProject.name = "MoGakRun"
23-
include ':app'
24-
include ':domain'
25-
include ':data'
26-
include ':presentation'
27-
include ':signin'
28-
include ':runningdata'
23+
include ":app"
24+
include ":domain"
25+
include ":data"
26+
include ":presentation"
27+
include ":signin"
28+
include ":runningdata"

0 commit comments

Comments
 (0)