fix(build): correct Dagger Hilt plugin configuration

- Add com.google.dagger.hilt.android plugin to root build.gradle.kts
- Update androidApp build.gradle.kts to use correct plugin ID
- Resolves workflow failures due to missing plugin definitions

Made by Wiktor/overspend1
This commit is contained in:
Wiktor
2025-07-23 03:04:44 +02:00
parent d89118eb70
commit 2a174d77d1
2 changed files with 2 additions and 1 deletions

View File

@@ -2,7 +2,7 @@ plugins {
id("com.android.application")
kotlin("android")
kotlin("kapt")
id("dagger.hilt.android.plugin")
id("com.google.dagger.hilt.android")
id("kotlin-parcelize")
}

View File

@@ -2,6 +2,7 @@
plugins {
id("com.android.application") version "8.2.0" apply false
id("org.jetbrains.kotlin.android") version "1.9.0" apply false
id("com.google.dagger.hilt.android") version "2.48" apply false
id("org.springframework.boot") version "3.1.5" apply false
id("io.spring.dependency-management") version "1.1.3" apply false
}