@@ -38,14 +38,16 @@ android {
3838 }
3939 lintOptions {
4040 abortOnError false
41+ disable ' GradleDependency' // noinspection GradleDependency 경고 비활성화
4142 }
4243 buildToolsVersion ' 28.0.3'
4344 ndkVersion ' 20.1.5948944'
4445}
4546
4647dependencies {
48+ def room_version = " 2.2.5"
49+
4750 implementation fileTree(dir : ' libs' , include : [' *.jar' ])
48- // noinspection GradleDependency
4951 implementation " org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version "
5052 implementation ' com.google.android.material:material:1.3.0-beta01'
5153 implementation ' androidx.appcompat:appcompat:1.2.0'
@@ -55,6 +57,10 @@ dependencies {
5557 // 머티리얼 디자인 라이브러리
5658 implementation ' com.rengwuxian.materialedittext:library:2.1.4'
5759
60+ // room
61+ implementation " androidx.room:room-runtime:$room_version "
62+ kapt " androidx.room:room-compiler:$room_version "
63+
5864 // test implementation
5965 implementation ' androidx.legacy:legacy-support-v4:1.0.0'
6066 testImplementation ' junit:junit:4.12'
@@ -65,14 +71,9 @@ dependencies {
6571 testImplementation ' androidx.arch.core:core-testing:2.1.0'
6672 androidTestImplementation ' androidx.test:runner:1.2.0'
6773 androidTestImplementation ' androidx.test.espresso:espresso-core:3.2.0'
68- androidTestImplementation ' androidx.test:runner:1.2.0'
69- androidTestImplementation ' androidx.test.espresso:espresso-core:3.2.0'
70- androidTestImplementation ' androidx.test:runner:1.2.0'
7174 androidTestImplementation ' androidx.test:rules:1.2.0'
7275 androidTestImplementation ' androidx.test:core:1.2.0'
73- androidTestImplementation ' androidx.test.espresso:espresso-core:3.2.0'
7476 androidTestImplementation ' androidx.test.ext:junit:1.1.1'
75- androidTestImplementation ' androidx.test.espresso:espresso-core:3.2.0'
7677 androidTestImplementation ' androidx.test.espresso:espresso-intents:3.2.0'
7778
7879 // Google Ads
@@ -87,11 +88,6 @@ dependencies {
8788 implementation ' com.squareup.retrofit2:converter-gson:2.4.0'
8889 implementation ' com.google.code.gson:gson:2.8.5'
8990
90- // room
91- implementation ' androidx.room:room-runtime:2.2.0'
92- kapt ' androidx.room:room-compiler:2.2.0'
93- kaptTest ' androidx.room:room-testing:2.2.0'
94-
9591 // Lifecycle components
9692 implementation ' androidx.lifecycle:lifecycle-extensions:2.1.0'
9793 implementation ' android.arch.lifecycle:viewmodel:1.1.1'
0 commit comments