Skip to content

Commit

Permalink
Support AGP 8.0.0-alpha09 (#489)
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamin-bader authored Dec 5, 2022
1 parent b958bed commit b09a000
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ thrifty = "3.0.0"
[libraries]

# Build + runtime dependencies
androidTools-agp = "com.android.tools.build:gradle:8.0.0-alpha08" # Note that updates here usually require updates to androidTools-repository
androidTools-agp = "com.android.tools.build:gradle:8.0.0-alpha09" # Note that updates here usually require updates to androidTools-repository
androidTools-r8 = "com.android.tools:r8:3.3.28"
androidTools-repository = "com.android.tools:repository:31.0.0-alpha08"
androidTools-repository = "com.android.tools:repository:31.0.0-alpha09"
autoValue-processor = { module = "com.google.auto.value:auto-value", version.ref = "autoValue" }
autoValue-annotations = { module = "com.google.auto.value:auto-value-annotations", version.ref = "autoValue" }
commons-io = "commons-io:commons-io:2.10.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class IntegrationSpec extends Specification {

where:
agpVersion | gradleVersion || numMethods | numClasses | numFields
"8.0.0-alpha08" | "7.5" || 6938 | 1022 | 2527
"8.0.0-alpha09" | "7.5" || 6928 | 1018 | 2527
"7.4.0-rc01" | "7.5" || 7289 | 1072 | 2657
"7.3.1" | "7.5" || 7263 | 1037 | 2666
"7.2.2" | "7.5" || 7410 | 925 | 2666
Expand Down Expand Up @@ -87,7 +87,7 @@ class IntegrationSpec extends Specification {

where:
agpVersion | gradleVersion || numMethods | numClasses | numFields
"8.0.0-alpha08" | "7.5" || 7 | 5 | 3
"8.0.0-alpha09" | "7.5" || 4 | 3 | 0
"7.4.0-rc01" | "7.5" || 7 | 5 | 3
"7.3.1" | "7.5" || 7 | 5 | 3
"7.2.2" | "7.5" || 7 | 5 | 3
Expand Down Expand Up @@ -121,7 +121,7 @@ class IntegrationSpec extends Specification {

where:
agpVersion | gradleVersion || numMethods | numClasses | numFields
"8.0.0-alpha08" | "7.5" || 4242 | 726 | 1268
"8.0.0-alpha09" | "7.5" || 4240 | 725 | 1265
"7.4.0-rc01" | "7.5" || 4244 | 728 | 1268
"7.3.1" | "7.5" || 4277 | 745 | 1284
"7.2.2" | "7.5" || 4266 | 723 | 1268
Expand Down Expand Up @@ -155,7 +155,7 @@ class IntegrationSpec extends Specification {

where:
agpVersion | gradleVersion || numMethods | numClasses | numFields
"8.0.0-alpha08" | "7.5" || 6938 | 1022 | 2527
"8.0.0-alpha09" | "7.5" || 6928 | 1018 | 2527
"7.4.0-rc01" | "7.5" || 7289 | 1072 | 2657
"7.3.1" | "7.5" || 7263 | 1037 | 2666
"7.2.2" | "7.5" || 7410 | 925 | 2666
Expand Down

0 comments on commit b09a000

Please sign in to comment.