@@ -4,8 +4,6 @@ import dependencies.Versions
44apply plugin : ' com.android.application'
55apply plugin : ' kotlin-android'
66apply plugin : ' kotlin-kapt'
7- apply plugin : " org.jlleitschuh.gradle.ktlint"
8- apply plugin : ' io.fabric'
97apply from : " ${ rootDir.absolutePath} /versions.gradle"
108
119def versionMajor = 1
@@ -22,7 +20,6 @@ android {
2220 targetSdkVersion Versions . androidTargetSdkVersion
2321 versionCode versionMajor * 10000 + versionMinor * 100 + versionPatch
2422 versionName " $versionMajor . $versionMinor . $versionPatch "
25- testInstrumentationRunner " android.support.test.runner.AndroidJUnitRunner"
2623 }
2724 signingConfigs {
2825 release {
@@ -61,9 +58,6 @@ android {
6158dependencies {
6259 implementation project(' :library' )
6360
64- // ==================== Kotlin ====================
65- implementation Depends.Kotlin . stdlib
66-
6761 // ==================== Support Library ====================
6862 implementation Depends.AndroidX . appCompat
6963 implementation Depends.AndroidX . design
@@ -72,7 +66,7 @@ dependencies {
7266 // ==================== Network ====================
7367 implementation Depends.Retrofit . core
7468 implementation Depends.Retrofit . converterMoshi
75- implementation Depends.Retrofit . adapterRxJava2
69+ implementation Depends.Retrofit . adapterRxJava3
7670
7771 // ==================== Structure ====================
7872 implementation Depends.Kotshi . api
@@ -99,10 +93,3 @@ dependencies {
9993 androidTestImplementation Depends.Test.Espresso . core
10094 androidTestImplementation Depends.Test.Espresso . intents
10195}
102-
103- ktlint {
104- version = versions. ktlint
105- android = true
106- reporter = " checkstyle"
107- ignoreFailures = true
108- }
0 commit comments