File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed
build-logic/src/main/kotlin
plugin/android-junit5/src/test/resources/test-projects Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -13,9 +13,9 @@ enum class SupportedAgp(
1313 AGP_8_2 (" 8.2.2" , gradle = " 8.2" ),
1414 AGP_8_3 (" 8.3.2" , gradle = " 8.4" ),
1515 AGP_8_4 (" 8.4.2" , gradle = " 8.6" ),
16- AGP_8_5 (" 8.5.1 " , gradle = " 8.7" ),
16+ AGP_8_5 (" 8.5.2 " , gradle = " 8.7" ),
1717 AGP_8_6 (" 8.6.0-rc01" , gradle = " 8.7" ),
18- AGP_8_7 (" 8.7.0-alpha04 " , gradle = " 8.8 " );
18+ AGP_8_7 (" 8.7.0-alpha07 " , gradle = " 8.9 " );
1919
2020 companion object {
2121 val oldest = values().first()
Original file line number Diff line number Diff line change @@ -19,6 +19,11 @@ buildscript {
1919 repositories {
2020 google()
2121 mavenCentral()
22+ maven("https://oss.sonatype.org/content/repositories/snapshots") {
23+ mavenContent {
24+ snapshotsOnly()
25+ }
26+ }
2227 }
2328}
2429
@@ -45,6 +50,11 @@ if (version != "${androidGradlePluginVersion}") {
4550repositories {
4651 google()
4752 mavenCentral()
53+ maven("https://oss.sonatype.org/content/repositories/snapshots") {
54+ mavenContent {
55+ snapshotsOnly()
56+ }
57+ }
4858}
4959
5060android {
You can’t perform that action at this time.
0 commit comments