@@ -62,7 +62,7 @@ android {
62
62
compose true
63
63
}
64
64
composeOptions {
65
- kotlinCompilerExtensionVersion ' 1.3.2 '
65
+ kotlinCompilerExtensionVersion ' 1.4.0 '
66
66
}
67
67
packagingOptions {
68
68
resources {
@@ -109,23 +109,28 @@ wire {
109
109
}
110
110
dependencies {
111
111
112
+ kapt " org.jetbrains.kotlinx:kotlinx-metadata-jvm:0.5.0"
113
+
112
114
implementation ' androidx.core:core-ktx:1.9.0'
113
115
implementation ' androidx.activity:activity-compose:1.6.1'
114
116
implementation " androidx.compose.ui:ui:$compose_version "
115
117
implementation " androidx.compose.ui:ui-tooling-preview:$compose_version "
116
118
implementation " androidx.compose.ui:ui-util:$compose_version "
117
- implementation " androidx.compose.runtime:runtime-livedata:$compose_version "
119
+ implementation " androidx.compose.runtime:runtime-livedata:1.3.3"
120
+ // implementation "androidx.compose.runtime:runtime-livedata:$compose_version"
121
+ implementation " androidx.compose.animation:animation:1.3.3"
122
+ // implementation "androidx.compose.animation:animation:$compose_version"
118
123
implementation " androidx.navigation:navigation-compose:2.5.3"
119
124
implementation " androidx.hilt:hilt-navigation-compose:1.0.0"
120
125
121
126
// Constraint layout
122
127
implementation " androidx.constraintlayout:constraintlayout-compose:1.0.1"
123
128
124
129
// Material Design
125
- implementation ' com.google.android.material:material:1.7 .0'
130
+ implementation ' com.google.android.material:material:1.8 .0'
126
131
implementation " androidx.compose.material:material:1.3.1"
127
132
implementation " androidx.compose.material:material-icons-extended:1.3.1"
128
- implementation " androidx.compose.material3:material3:1.1.0-alpha04 "
133
+ implementation " androidx.compose.material3:material3:1.1.0-alpha05 "
129
134
implementation " androidx.compose.material3:material3-window-size-class:1.0.1"
130
135
131
136
// Large screen support
@@ -141,7 +146,7 @@ dependencies {
141
146
// implementation 'com.google.protobuf:protobuf-kotlin-lite:3.19.1'
142
147
143
148
// Lifecycle
144
- implementation " androidx.lifecycle:lifecycle-runtime-compose:2.6.0-alpha04 "
149
+ implementation " androidx.lifecycle:lifecycle-runtime-compose:2.6.0-alpha05 "
145
150
implementation " androidx.lifecycle:lifecycle-livedata-ktx:2.5.1"
146
151
implementation ' androidx.lifecycle:lifecycle-runtime-ktx:2.5.1'
147
152
implementation ' androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1'
@@ -151,10 +156,10 @@ dependencies {
151
156
kapt ' androidx.lifecycle:lifecycle-common-java8:2.5.1'
152
157
153
158
// Dependency Injection
154
- implementation ' com.google.dagger:hilt-android:2.42 '
159
+ implementation ' com.google.dagger:hilt-android:2.44.2 '
155
160
kapt ' androidx.hilt:hilt-compiler:1.0.0'
156
- kapt ' com.google.dagger:hilt-compiler:2.42 '
157
- kapt ' com.google.dagger:hilt-android-compiler:2.39.1 '
161
+ kapt ' com.google.dagger:hilt-compiler:2.44.2 '
162
+ kapt ' com.google.dagger:hilt-android-compiler:2.44.2 '
158
163
159
164
// Datastore
160
165
implementation " androidx.datastore:datastore:1.0.0"
@@ -172,6 +177,7 @@ dependencies {
172
177
implementation " com.google.accompanist:accompanist-navigation-material:$accompanist_version "
173
178
implementation " com.google.accompanist:accompanist-navigation-animation:$accompanist_version "
174
179
implementation " com.google.accompanist:accompanist-flowlayout:$accompanist_version "
180
+ implementation " com.google.accompanist:accompanist-permissions:$accompanist_version "
175
181
implementation " com.google.accompanist:accompanist-systemuicontroller:$accompanist_version "
176
182
177
183
// Other
@@ -184,8 +190,8 @@ dependencies {
184
190
androidTestImplementation ' androidx.test.ext:junit:1.1.5'
185
191
androidTestImplementation ' androidx.test.espresso:espresso-core:3.5.1'
186
192
androidTestImplementation " androidx.compose.ui:ui-test-junit4:$compose_version "
187
- androidTestImplementation ' com.google.dagger:hilt-android-testing:2.38.1 '
193
+ androidTestImplementation ' com.google.dagger:hilt-android-testing:2.44.2 '
188
194
debugImplementation " androidx.compose.ui:ui-tooling:$compose_version "
189
195
debugImplementation " androidx.compose.ui:ui-test-manifest:$compose_version "
190
- kaptAndroidTest ' com.google.dagger:hilt-android-compiler:2.39.1 '
196
+ kaptAndroidTest ' com.google.dagger:hilt-android-compiler:2.44.2 '
191
197
}
0 commit comments