File tree 1 file changed +3
-8
lines changed
1 file changed +3
-8
lines changed Original file line number Diff line number Diff line change 1
1
plugins {
2
2
id(" com.android.application" )
3
3
id(" org.jetbrains.kotlin.android" )
4
- kotlin(" kapt" )
5
4
id(" com.google.dagger.hilt.android" )
6
5
id(" kotlin-parcelize" )
7
6
id(" com.google.devtools.ksp" )
@@ -60,6 +59,7 @@ android {
60
59
packaging {
61
60
resources {
62
61
excludes + = " /META-INF/{AL2.0,LGPL2.1}"
62
+ excludes + = " /META-INF/LICENSE.md"
63
63
}
64
64
}
65
65
}
@@ -153,12 +153,12 @@ dependencies {
153
153
// Dependency Management
154
154
val hilt = " 2.50"
155
155
implementation(" com.google.dagger:hilt-android:$hilt " )
156
- kapt (" com.google.dagger:hilt-android-compiler:$hilt " )
156
+ ksp (" com.google.dagger:hilt-android-compiler:$hilt " )
157
157
158
158
val hiltKtx = " 1.1.0"
159
159
implementation(" androidx.hilt:hilt-navigation-compose:$hiltKtx " )
160
160
implementation(" androidx.hilt:hilt-work:$hiltKtx " )
161
- kapt (" androidx.hilt:hilt-compiler:$hiltKtx " )
161
+ ksp (" androidx.hilt:hilt-compiler:$hiltKtx " )
162
162
163
163
// Image
164
164
val coil = " 2.5.0"
@@ -192,9 +192,4 @@ dependencies {
192
192
debugImplementation(" androidx.compose.ui:ui-tooling" )
193
193
debugImplementation(" androidx.compose.ui:ui-test-manifest" )
194
194
195
- }
196
-
197
- // Allow references to generated code
198
- kapt {
199
- correctErrorTypes = true
200
195
}
You can’t perform that action at this time.
0 commit comments