AGP 9.0+ removes the kotlin-android plugin requirement (handled automatically by AGP itself once kotlin-compose is applied). Task 5 removed it from app/build.gradle.kts; this commit removes the no-longer-consumed alias from the root build and version catalog. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
8 lines
296 B
Kotlin
8 lines
296 B
Kotlin
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
plugins {
|
|
alias(libs.plugins.android.application) apply false
|
|
alias(libs.plugins.kotlin.compose) apply false
|
|
alias(libs.plugins.ksp) apply false
|
|
alias(libs.plugins.hilt) apply false
|
|
}
|