Update AGP to 8.0

Co-authored-by: Greyson Parrelli <greyson@signal.org>
This commit is contained in:
Cody Henthorne
2023-06-20 14:49:00 -04:00
committed by Nicholas Tinsley
parent ed4a1d6ddd
commit 53673be5cb
29 changed files with 643 additions and 1768 deletions

View File

@@ -1,5 +1,5 @@
buildscript {
val kotlinVersion by extra("1.7.20")
val kotlinVersion by extra("1.8.10")
repositories {
google()
@@ -10,3 +10,12 @@ buildscript {
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
}
}
allprojects {
// Needed because otherwise the kapt task defaults to jvmTarget 17, which "poisons the well" and requires us to bump up too
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().configureEach {
kotlinOptions {
jvmTarget = "11"
}
}
}

View File

@@ -1,5 +1,3 @@
plugins {
`kotlin-dsl`
id("groovy-gradle-plugin")