mirror of
https://github.com/d4rken-org/capod.git
synced 2026-09-16 19:26:12 -04:00
This commit updates the Android Gradle Plugin (AGP) from version 8.10.0 to 8.10.1 and the Kotlin Symbol Processing (KSP) plugin from version 2.1.20-2.0.0 to 2.1.21-2.0.1. These changes are applied in the root `build.gradle.kts` file and the `buildSrc/build.gradle.kts` file.
15 lines
297 B
Kotlin
15 lines
297 B
Kotlin
plugins {
|
|
`kotlin-dsl`
|
|
`java-library`
|
|
}
|
|
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
implementation("com.android.tools.build:gradle:8.10.1")
|
|
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:2.1.21")
|
|
implementation("com.squareup:javapoet:1.13.0")
|
|
}
|