@@ -5,14 +5,14 @@ apply plugin: 'kotlin-android-extensions'
5
5
apply plugin : ' kotlin-kapt'
6
6
7
7
android {
8
- compileSdkVersion 27
8
+ compileSdkVersion 28
9
9
defaultConfig {
10
10
applicationId " org.mifos.mobile.cn"
11
11
minSdkVersion rootProject. ext. minSdkVersion
12
12
targetSdkVersion rootProject. ext. targetSdkVersion
13
13
versionCode 1
14
14
versionName " 1.0"
15
- testInstrumentationRunner " android.support .test.runner.AndroidJUnitRunner"
15
+ testInstrumentationRunner " androidx .test.runner.AndroidJUnitRunner"
16
16
vectorDrawables. useSupportLibrary = true
17
17
}
18
18
buildTypes {
@@ -81,13 +81,13 @@ dependencies {
81
81
implementation " org.jetbrains.kotlin:kotlin-stdlib-jdk7:$rootProject . kotlinVersion "
82
82
83
83
// Support Dependencies
84
- implementation " com.android.support :appcompat-v7 :$rootProject . supportLibraryVersion "
85
- implementation " com.android.support:design :$rootProject . supportLibraryVersion "
86
- implementation " com.android.support :recyclerview-v7 :$rootProject . supportLibraryVersion "
87
- implementation " com.android.support :cardview-v7 :$rootProject . supportLibraryVersion "
88
- implementation " com.android.support .test.espresso:espresso-idling-resource:$rootProject . espressoVersion "
89
- implementation " com.android.support:support-annotations :$rootProject . supportLibraryVersion "
90
- implementation ' com.android.support.constraint:constraint-layout :1.1.0 '
84
+ implementation " androidx.appcompat :appcompat:$rootProject . supportLibraryVersion "
85
+ implementation " com.google. android.material:material :$rootProject . supportLibraryVersion "
86
+ implementation " androidx.recyclerview :recyclerview:$rootProject . supportLibraryVersion "
87
+ implementation " androidx.cardview :cardview:$rootProject . supportLibraryVersion "
88
+ implementation " androidx .test.espresso:espresso-idling-resource:$rootProject . espressoVersion "
89
+ implementation " androidx.annotation:annotation :$rootProject . supportLibraryVersion "
90
+ implementation ' androidx.constraintlayout:constraintlayout :1.1.3 '
91
91
implementation " com.mifos.mobile:mifos-passcode:$rootProject . passcodeLibraryVersion "
92
92
// Rx Dependencies
93
93
implementation " io.reactivex.rxjava2:rxjava:$rootProject . rxjavaVersion "
@@ -120,8 +120,8 @@ dependencies {
120
120
implementation " com.stepstone.stepper:material-stepper:$rootProject . stepperVersion "
121
121
122
122
// Glide for Image Loading
123
- implementation ' com.github.bumptech.glide:glide:4.7.1 '
124
- kapt ' com.github.bumptech.glide:compiler:4.7.1 '
123
+ implementation ' com.github.bumptech.glide:glide:4.8.0 '
124
+ kapt ' com.github.bumptech.glide:compiler:4.8.0 '
125
125
126
126
// dbFlow for database
127
127
kapt " com.github.Raizlabs.DBFlow:dbflow-processor:$rootProject . dbFlowVersion "
@@ -135,22 +135,22 @@ dependencies {
135
135
androidTestImplementation jUnit
136
136
androidTestImplementation mockito
137
137
androidTestImplementation " org.mockito:mockito-android:$rootProject . mockitoVersion "
138
- androidTestImplementation " com.android.support:support-annotations :$rootProject . supportLibraryVersion "
139
- androidTestImplementation(" com.android.support .test.espresso:espresso-contrib:$rootProject . espressoVersion " ) {
138
+ androidTestImplementation " androidx.annotation:annotation :$rootProject . supportLibraryVersion "
139
+ androidTestImplementation(" androidx .test.espresso:espresso-contrib:$rootProject . espressoVersion " ) {
140
140
exclude group : ' com.android.support' , module : ' appcompat'
141
141
exclude group : ' com.android.support' , module : ' support-v4'
142
142
exclude group : ' com.android.support' , module : ' recyclerview-v7'
143
143
exclude group : ' com.android.support' , module : ' design'
144
144
exclude group : ' com.android.support' , module : ' support-annotations'
145
145
}
146
- androidTestImplementation " com.android.support .test.espresso:espresso-core:$rootProject . espressoVersion "
147
- androidTestImplementation " com.android.support .test:runner:$rootProject . runnerVersion "
148
- androidTestImplementation " com.android.support .test:rules:$rootProject . rulesVersion "
146
+ androidTestImplementation " androidx .test.espresso:espresso-core:$rootProject . espressoVersion "
147
+ androidTestImplementation " androidx .test:runner:$rootProject . runnerVersion "
148
+ androidTestImplementation " androidx .test:rules:$rootProject . rulesVersion "
149
149
150
150
// Unit tests dependencies
151
151
testImplementation jUnit
152
152
testImplementation mockito
153
- testImplementation " com.android.support:support-annotations :$rootProject . supportLibraryVersion "
153
+ testImplementation " androidx.annotation:annotation :$rootProject . supportLibraryVersion "
154
154
testImplementation " org.hamcrest:hamcrest-core:$rootProject . hamcrestVersion "
155
155
testImplementation " org.hamcrest:hamcrest-library:$rootProject . hamcrestVersion "
156
156
testImplementation " org.hamcrest:hamcrest-integration:$rootProject . hamcrestVersion "
0 commit comments