@@ -44,44 +44,37 @@ android {
44
44
45
45
composeOptions {
46
46
kotlinCompilerExtensionVersion = Dependency .COMPOSE_VERSION
47
- kotlinCompilerVersion = Dependency .KOTLIN_VERSION
48
47
}
49
48
50
49
tasks.withType< org.jetbrains.kotlin.gradle.tasks.KotlinCompile > {
51
50
kotlinOptions {
52
51
jvmTarget = JavaVersion .VERSION_11 .toString()
53
- useIR = true
54
52
}
55
53
}
56
54
57
- packagingOptions {
58
- exclude(" META-INF/AL2.0" )
59
- exclude(" META-INF/LGPL2.1" )
60
- }
61
-
62
55
}
63
56
64
57
dependencies {
65
58
66
59
implementation(" org.jetbrains.kotlin:kotlin-stdlib-jdk7:${Dependency .KOTLIN_VERSION } " )
67
60
68
- implementation(" androidx.appcompat:appcompat:1.3.1 " )
69
- implementation(" androidx.core:core-ktx:1.6 .0" )
61
+ implementation(" androidx.appcompat:appcompat:1.4.0 " )
62
+ implementation(" androidx.core:core-ktx:1.7 .0" )
70
63
implementation(" androidx.preference:preference-ktx:1.1.1" )
71
- implementation(" androidx.constraintlayout:constraintlayout:2.1.0 " )
64
+ implementation(" androidx.constraintlayout:constraintlayout:2.1.2 " )
72
65
implementation(" androidx.legacy:legacy-support-v4:1.0.0" )
73
66
74
67
implementation(" androidx.compose.ui:ui:${Dependency .COMPOSE_VERSION } " )
75
68
implementation(" androidx.compose.material:material:${Dependency .COMPOSE_VERSION } " )
76
69
implementation(" androidx.compose.ui:ui-tooling-preview:${Dependency .COMPOSE_VERSION } " )
77
70
78
- implementation(" androidx.lifecycle:lifecycle-runtime-ktx:2.3.1 " )
79
- implementation(" androidx.activity:activity-compose:1.3.1 " )
71
+ implementation(" androidx.lifecycle:lifecycle-runtime-ktx:2.4.0 " )
72
+ implementation(" androidx.activity:activity-compose:1.4.0 " )
80
73
81
74
implementation(" androidx.activity:activity-ktx:${Dependency .ACTIVITY_KTX_VERSION } " )
82
75
implementation(" androidx.fragment:fragment-ktx:${Dependency .FRAGMENT_KTX_VERSION } " )
83
76
84
- implementation(" androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.0-beta01 " )
77
+ implementation(" androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.0" )
85
78
implementation(" androidx.lifecycle:lifecycle-extensions:2.2.0" )
86
79
87
80
implementation(" androidx.room:room-runtime:${Dependency .ROOM_VERSION } " )
@@ -92,16 +85,16 @@ dependencies {
92
85
implementation(" com.google.code.gson:gson:2.8.8" )
93
86
implementation(" com.google.android.material:material:1.4.0" )
94
87
95
- implementation(" com.squareup.okhttp3:okhttp:4.9.0 " )
96
- implementation(" com.squareup.okhttp3:logging-interceptor:4.9.0 " )
88
+ implementation(" com.squareup.okhttp3:okhttp:5.0.0-alpha.2 " )
89
+ implementation(" com.squareup.okhttp3:logging-interceptor:4.9.2 " )
97
90
98
91
implementation(" com.squareup.retrofit2:retrofit:2.9.0" )
99
92
implementation(" com.squareup.retrofit2:converter-gson:2.9.0" )
100
- implementation(" com.squareup.retrofit2:adapter-rxjava:2.3 .0" )
93
+ implementation(" com.squareup.retrofit2:adapter-rxjava:2.9 .0" )
101
94
implementation(" com.squareup.retrofit2:adapter-rxjava2:2.9.0" )
102
95
103
96
implementation(" io.reactivex.rxjava2:rxandroid:2.1.1" )
104
- implementation(" io.reactivex.rxjava2:rxjava:2.2.19 " )
97
+ implementation(" io.reactivex.rxjava2:rxjava:2.2.21 " )
105
98
106
99
implementation(" com.github.javiersantos:PiracyChecker:1.2.8" )
107
100
implementation(" com.github.bumptech.glide:glide:4.12.0" )
@@ -110,14 +103,14 @@ dependencies {
110
103
implementation(" com.readystatesoftware.chuck:library:1.1.0" )
111
104
112
105
api(" com.google.dagger:dagger:2.38.1" )
113
- api(" org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2-native-mt " )
114
- api(" org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.0 " )
115
- implementation(" androidx.lifecycle:lifecycle-livedata-ktx:2.3.1 " )
106
+ api(" org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2" )
107
+ api(" org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.2 " )
108
+ implementation(" androidx.lifecycle:lifecycle-livedata-ktx:2.4.0 " )
116
109
117
- kapt(" androidx.lifecycle:lifecycle-compiler:2.4.0-beta01 " )
110
+ kapt(" androidx.lifecycle:lifecycle-compiler:2.4.0" )
118
111
kapt(" androidx.room:room-compiler:2.3.0" )
119
112
kapt(" com.google.dagger:dagger-compiler:2.37" )
120
- kapt(" com.github.bumptech.glide:compiler:4.11 .0" )
113
+ kapt(" com.github.bumptech.glide:compiler:4.12 .0" )
121
114
122
115
implementation(" io.insert-koin:koin-core:${Dependency .KOIN_VERSION } " ) // Koin core features
123
116
implementation(" io.insert-koin:koin-android:${Dependency .KOIN_VERSION } " ) // Koin main features for Android (Scope,ViewModel ...)
0 commit comments