@@ -2,7 +2,6 @@ plugins {
2
2
id(" com.android.application" )
3
3
id(" kotlin-android" )
4
4
id(" kotlin-kapt" )
5
- id(" kotlin-android-extensions" )
6
5
id(" androidx.navigation.safeargs.kotlin" )
7
6
id(" dagger.hilt.android.plugin" )
8
7
}
@@ -27,8 +26,8 @@ android {
27
26
applicationId " $application_id "
28
27
minSdkVersion 26
29
28
targetSdkVersion 33
30
- versionCode 9
31
- versionName " 1.1 .0"
29
+ versionCode 10
30
+ versionName " 1.2 .0"
32
31
33
32
testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
34
33
}
@@ -71,31 +70,30 @@ android {
71
70
}
72
71
73
72
compileOptions {
74
- sourceCompatibility JavaVersion . VERSION_1_8
75
- targetCompatibility JavaVersion . VERSION_1_8
73
+ sourceCompatibility JavaVersion . VERSION_17
74
+ targetCompatibility JavaVersion . VERSION_17
76
75
}
77
76
kotlinOptions {
78
- jvmTarget = ' 1.8 '
77
+ jvmTarget = ' 17 '
79
78
}
80
79
namespace ' com.afaneca.myfin'
81
80
}
82
81
83
82
dependencies {
84
83
implementation fileTree(dir : " libs" , include : [" *.jar" ])
85
- implementation " org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version "
86
- implementation " androidx.core:core-ktx:$kotlin_version "
87
- implementation ' androidx.appcompat:appcompat:1.5.1'
84
+ implementation " androidx.core:core-ktx:1.9.0"
85
+ implementation ' androidx.appcompat:appcompat:1.6.1'
88
86
implementation ' androidx.constraintlayout:constraintlayout:2.1.4'
89
- implementation ' com.google.android.material:material:1.6.1 '
87
+ implementation ' com.google.android.material:material:1.9.0 '
90
88
implementation " androidx.navigation:navigation-fragment-ktx:$nav_version "
91
89
implementation " androidx.navigation:navigation-ui-ktx:$nav_version "
92
- implementation ' androidx.annotation:annotation:1.5 .0'
90
+ implementation ' androidx.annotation:annotation:1.6 .0'
93
91
implementation ' androidx.legacy:legacy-support-v4:1.0.0'
94
92
implementation ' androidx.security:security-crypto:1.1.0-alpha01'
95
93
implementation(" androidx.preference:preference-ktx:$preference_version " )
96
94
testImplementation ' junit:junit:4.13.2'
97
- androidTestImplementation ' androidx.test.ext:junit:1.1.3 '
98
- androidTestImplementation ' androidx.test.espresso:espresso-core:3.4.0 '
95
+ androidTestImplementation ' androidx.test.ext:junit:1.1.5 '
96
+ androidTestImplementation ' androidx.test.espresso:espresso-core:3.5.1 '
99
97
100
98
// Retrofit
101
99
implementation " com.squareup.retrofit2:retrofit:$retrofit_version "
@@ -109,7 +107,7 @@ dependencies {
109
107
implementation " androidx.lifecycle:lifecycle-livedata-ktx:$lifecycle_version "
110
108
111
109
// Coroutines
112
- implementation ' org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.1 '
110
+ implementation ' org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4 '
113
111
114
112
// DI - Dagger-hilt
115
113
implementation(" com.google.dagger:hilt-android:$hilt_version " )
@@ -141,8 +139,8 @@ dependencies {
141
139
142
140
// Testing
143
141
testImplementation " com.google.truth:truth:1.1.3"
144
- testImplementation " androidx.arch.core:core-testing:2.1 .0"
145
- testImplementation ' org.jetbrains.kotlinx:kotlinx-coroutines-test:1.6.1 '
142
+ testImplementation " androidx.arch.core:core-testing:2.2 .0"
143
+ testImplementation ' org.jetbrains.kotlinx:kotlinx-coroutines-test:1.6.4 '
146
144
}
147
145
148
146
// Allow references to generated code
0 commit comments