Group Dagger updates

This commit is contained in:
Goooler
2023-11-14 10:36:42 +08:00
parent baa49ef0ef
commit 59bd472487
3 changed files with 13 additions and 7 deletions

View File

@@ -33,6 +33,12 @@
"matchPackagePatterns": [
"androidx.lifecycle:*"
]
},
{
"groupName": "Dagger",
"matchPackagePrefixes": [
"com.google.dagger"
]
}
]
}

View File

@@ -31,8 +31,8 @@ dependencies {
compileOnly projects.systemUnFold
implementation 'javax.inject:javax.inject:1'
implementation 'com.google.dagger:dagger-android-support:2.48' // if you use the support libraries
annotationProcessor 'com.google.dagger:dagger-android-processor:2.48'
annotationProcessor 'com.google.dagger:dagger-compiler:2.48'
implementation 'com.google.dagger:dagger-android-support:2.48.1' // if you use the support libraries
annotationProcessor 'com.google.dagger:dagger-android-processor:2.48.1'
annotationProcessor 'com.google.dagger:dagger-compiler:2.48.1'
implementation "androidx.concurrent:concurrent-futures:1.1.0"
}

View File

@@ -28,10 +28,10 @@ dependencies {
implementation 'javax.inject:javax.inject:1'
implementation 'com.google.dagger:dagger-android-support:2.48' // if you use the support libraries
kapt 'com.google.dagger:dagger-android-processor:2.48'
kapt 'com.google.dagger:dagger-compiler:2.48'
implementation "com.google.dagger:hilt-android:2.48"
implementation 'com.google.dagger:dagger-android-support:2.48.1' // if you use the support libraries
kapt 'com.google.dagger:dagger-android-processor:2.48.1'
kapt 'com.google.dagger:dagger-compiler:2.48.1'
implementation "com.google.dagger:hilt-android:2.48.1"
kapt "com.google.dagger:hilt-android-compiler:2.48.1"
implementation "androidx.concurrent:concurrent-futures:1.1.0"