1
1
apply plugin : ' com.android.application'
2
2
apply plugin : ' kotlin-android'
3
3
apply plugin : ' kotlin-android-extensions'
4
+ apply plugin : ' com.google.gms.google-services'
5
+ apply plugin : ' kotlin-kapt'
4
6
apply plugin : ' deploygate'
5
7
6
8
android {
7
9
compileSdkVersion 30
8
10
buildToolsVersion " 30.0.0"
9
11
10
12
defaultConfig {
11
- applicationId " io.github.mrtry.todolists "
13
+ applicationId " io.github.mrtry.todolist "
12
14
minSdkVersion 23
13
15
targetSdkVersion 30
14
16
versionCode 1
@@ -23,18 +25,82 @@ android {
23
25
proguardFiles getDefaultProguardFile(' proguard-android-optimize.txt' ), ' proguard-rules.pro'
24
26
}
25
27
}
28
+
29
+ buildFeatures {
30
+ dataBinding true
31
+ }
32
+
33
+ viewBinding {
34
+ enabled = true
35
+ }
36
+
37
+ packagingOptions {
38
+ exclude ' META-INF/AL2.0'
39
+ exclude ' META-INF/LGPL2.1'
40
+ }
41
+
42
+ kapt {
43
+ javacOptions {
44
+ option(" -Xmaxerrs" , 5000 )
45
+ }
46
+ }
47
+
48
+ testOptions {
49
+ unitTests {
50
+ includeAndroidResources = true
51
+ }
52
+
53
+ unitTests. all {
54
+ testLogging {
55
+ events ' started' , ' passed' , ' skipped' , ' failed'
56
+ }
57
+ }
58
+ }
26
59
}
27
60
28
61
dependencies {
29
62
implementation fileTree(dir : " libs" , include : [" *.jar" ])
30
63
implementation " org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version "
31
- implementation ' androidx.core:core-ktx:1.3.1 '
64
+ implementation ' androidx.core:core-ktx:1.3.2 '
32
65
implementation ' androidx.appcompat:appcompat:1.2.0'
33
- implementation ' androidx.constraintlayout:constraintlayout:2.0.1'
66
+ implementation ' androidx.constraintlayout:constraintlayout:2.0.2'
67
+ implementation " androidx.swiperefreshlayout:swiperefreshlayout:1.1.0"
68
+ implementation ' com.google.android.material:material:1.2.1'
69
+
70
+ // dagger
71
+ def dagger_version = " 2.29.1"
72
+ implementation " com.google.dagger:dagger:$dagger_version "
73
+ kapt " com.google.dagger:dagger-compiler:$dagger_version "
74
+
75
+ // coroutine
76
+ def coroutine_version = " 1.3.9"
77
+ implementation " org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutine_version "
78
+ implementation " org.jetbrains.kotlinx:kotlinx-coroutines-test:$coroutine_version "
79
+ implementation " org.jetbrains.kotlinx:kotlinx-coroutines-play-services:$coroutine_version "
80
+
81
+ // deploy gate
82
+ implementation ' com.deploygate:sdk:4.1.0'
83
+
84
+ // Firebase
85
+ implementation ' com.google.firebase:firebase-analytics:17.5.0'
86
+ implementation ' com.google.firebase:firebase-auth:19.4.0'
87
+ implementation ' com.google.firebase:firebase-firestore:21.7.0'
88
+ implementation ' com.firebaseui:firebase-ui-auth:6.2.0'
89
+
90
+ // test
34
91
testImplementation ' junit:junit:4.12'
92
+ testImplementation ' org.robolectric:robolectric:4.4'
93
+ testImplementation ' androidx.test:core:1.3.0'
94
+ testImplementation " androidx.arch.core:core-testing:2.1.0"
95
+ testImplementation ' org.mockito:mockito-core:3.3.3'
96
+ testImplementation ' org.mockito:mockito-android:3.3.3'
97
+ testImplementation " com.nhaarman.mockitokotlin2:mockito-kotlin:2.2.0"
98
+ testImplementation " com.google.truth:truth:1.0.1"
99
+ testImplementation ' androidx.test.ext:junit:1.1.2'
35
100
androidTestImplementation ' androidx.test.ext:junit:1.1.2'
36
101
androidTestImplementation ' androidx.test.espresso:espresso-core:3.3.0'
102
+ androidTestImplementation ' androidx.annotation:annotation:1.1.0'
37
103
38
- // deploy gate
39
- implementation ' com.deploygate:sdk :4.1.0 '
40
- }
104
+ // other
105
+ implementation ' com.jakewharton.timber:timber :4.7.1 '
106
+ }
0 commit comments