@@ -4,8 +4,6 @@ import dependencies.Versions
4
4
apply plugin : ' com.android.application'
5
5
apply plugin : ' kotlin-android'
6
6
apply plugin : ' kotlin-kapt'
7
- apply plugin : " org.jlleitschuh.gradle.ktlint"
8
- apply plugin : ' io.fabric'
9
7
apply from : " ${ rootDir.absolutePath} /versions.gradle"
10
8
11
9
def versionMajor = 1
@@ -22,7 +20,6 @@ android {
22
20
targetSdkVersion Versions . androidTargetSdkVersion
23
21
versionCode versionMajor * 10000 + versionMinor * 100 + versionPatch
24
22
versionName " $versionMajor . $versionMinor . $versionPatch "
25
- testInstrumentationRunner " android.support.test.runner.AndroidJUnitRunner"
26
23
}
27
24
signingConfigs {
28
25
release {
@@ -61,9 +58,6 @@ android {
61
58
dependencies {
62
59
implementation project(' :library' )
63
60
64
- // ==================== Kotlin ====================
65
- implementation Depends.Kotlin . stdlib
66
-
67
61
// ==================== Support Library ====================
68
62
implementation Depends.AndroidX . appCompat
69
63
implementation Depends.AndroidX . design
@@ -72,7 +66,7 @@ dependencies {
72
66
// ==================== Network ====================
73
67
implementation Depends.Retrofit . core
74
68
implementation Depends.Retrofit . converterMoshi
75
- implementation Depends.Retrofit . adapterRxJava2
69
+ implementation Depends.Retrofit . adapterRxJava3
76
70
77
71
// ==================== Structure ====================
78
72
implementation Depends.Kotshi . api
@@ -99,10 +93,3 @@ dependencies {
99
93
androidTestImplementation Depends.Test.Espresso . core
100
94
androidTestImplementation Depends.Test.Espresso . intents
101
95
}
102
-
103
- ktlint {
104
- version = versions. ktlint
105
- android = true
106
- reporter = " checkstyle"
107
- ignoreFailures = true
108
- }
0 commit comments