Skip to content

Commit

Permalink
AGP 8.7.1, 8.8 Alpha 8 & don't rely on ANDROID_HOME for virtual test …
Browse files Browse the repository at this point in the history
…projects
  • Loading branch information
mannodermaus committed Oct 27, 2024
1 parent 8089c75 commit 583d9f0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build-logic/src/main/kotlin/Environment.kt
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ enum class SupportedAgp(
AGP_8_4("8.4.2", gradle = "8.6"),
AGP_8_5("8.5.2", gradle = "8.7"),
AGP_8_6("8.6.1", gradle = "8.7"),
AGP_8_7("8.7.0", gradle = "8.9"),
AGP_8_8("8.8.0-alpha05", gradle = "8.10.2"),
AGP_8_7("8.7.1", gradle = "8.9"),
AGP_8_8("8.8.0-alpha08", gradle = "8.10.2"),
;

companion object {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,9 @@ class FunctionalTestProjectCreator(
projectFolder.mkdirs()

// Set up static files
File(projectFolder, "local.properties").bufferedWriter().use { file ->
file.write("sdk.dir = ${environment.androidSdkFolder.absolutePath}")
}
File(projectFolder, "gradle.properties").bufferedWriter().use { file ->
file.write("android.useAndroidX = true")
}
Expand Down

0 comments on commit 583d9f0

Please sign in to comment.