Skip to content

Commit 471fb05

Browse files
committed
gradle: bump to agp 8.2.0-alpha05
I wanted to stay on 8.1 in hopes of landing on a stable channel, but Google won't backport the RB fix, so we have to bump to 8.2 alphas. Signed-off-by: Jason A. Donenfeld <[email protected]>
1 parent c6f2c4c commit 471fb05

File tree

2 files changed

+1
-13
lines changed

2 files changed

+1
-13
lines changed

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[versions]
2-
agp = "8.1.0-beta03"
2+
agp = "8.2.0-alpha05"
33
kotlin = "1.8.21"
44

55
[libraries]

ui/build.gradle.kts

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@ import org.jetbrains.kotlin.gradle.dsl.JvmTarget
44
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
55
import com.android.build.gradle.tasks.ExtractSupportedLocalesTask
66

7-
// Grotesque workaround for https://issuetracker.google.com/issues/279780940
8-
System.setProperty("com.android.tools.r8.disableApiModeling", "1")
9-
107
val pkg: String = providers.gradleProperty("wireguardPackageName").get()
118

129
plugins {
@@ -95,12 +92,3 @@ tasks.withType<JavaCompile>().configureEach {
9592
tasks.withType<KotlinCompile>().configureEach {
9693
compilerOptions.jvmTarget.set(JvmTarget.JVM_17)
9794
}
98-
99-
// Grotesque workaround for https://issuetracker.google.com/issues/281825213
100-
tasks.withType<ExtractSupportedLocalesTask>().configureEach {
101-
doLast {
102-
val file = localeList.asFile.get()
103-
val lines = file.readLines()
104-
file.writeText((listOf(lines[0]) + lines.subList(1, lines.size).sorted()).joinToString(separator = "\n"))
105-
}
106-
}

0 commit comments

Comments
 (0)