Merge pull request #4522 from nextcloud/remove_hilt_dependency

remove hilt dependency
This commit is contained in:
Marcel Hibbe 2024-12-10 10:04:58 +01:00 committed by GitHub
commit cbce4e9cd4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 0 additions and 8 deletions

View file

@ -26,7 +26,6 @@ apply plugin: 'com.github.spotbugs'
apply plugin: 'io.gitlab.arturbosch.detekt'
apply plugin: "org.jlleitschuh.gradle.ktlint"
apply plugin: 'kotlinx-serialization'
apply plugin: 'dagger.hilt.android.plugin'
android {
compileSdk 34
@ -46,7 +45,6 @@ android {
flavorDimensions "default"
renderscriptTargetApi 19
renderscriptSupportModeEnabled true
javaCompileOptions.annotationProcessorOptions.arguments['dagger.hilt.disableModulesHaveInstallInCheck'] = 'true'
productFlavors {
// used for f-droid
@ -355,9 +353,6 @@ dependencies {
implementation 'com.github.nextcloud-deps:android-talk-webrtc:121.6167.0'
implementation("io.coil-kt:coil-compose:2.7.0")
implementation "com.google.dagger:hilt-android:$hilt_version"
kapt "com.google.dagger:hilt-android-compiler:$hilt_version"
implementation("androidx.lifecycle:lifecycle-viewmodel-compose:2.8.7")
androidTestImplementation(platform("androidx.compose:compose-bom:2024.11.00"))
androidTestImplementation("androidx.compose.ui:ui-test-junit4")

View file

@ -12,7 +12,6 @@ buildscript {
ext {
kotlinVersion = '2.1.0'
hilt_version = '2.44'
}
repositories {
@ -28,8 +27,6 @@ buildscript {
classpath 'com.github.spotbugs.snom:spotbugs-gradle-plugin:6.0.26'
classpath "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.23.7"
classpath "org.jlleitschuh.gradle:ktlint-gradle:12.1.2"
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}