Skip to content

Commit

Permalink
Support AGP 8.1.0-alpha10 (#506)
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamin-bader committed Mar 23, 2023
1 parent 68fa370 commit e53b544
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.1.0"
[libraries]

# Build + runtime dependencies
androidTools-agp = "com.android.tools.build:gradle:8.1.0-alpha08" # Note that updates here usually require updates to androidTools-repository
androidTools-agp = "com.android.tools.build:gradle:8.1.0-alpha10" # Note that updates here usually require updates to androidTools-repository
androidTools-r8 = "com.android.tools:r8:4.0.48"
androidTools-repository = "com.android.tools:repository:31.1.0-alpha08"
androidTools-repository = "com.android.tools:repository:31.1.0-alpha10"
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 @@ -32,7 +32,7 @@ class IntegrationSpec extends Specification {

where:
agpVersion | gradleVersion || numMethods | numClasses | numFields
"8.1.0-alpha08" | "8.0.2" || 6941 | 1030 | 2528
"8.1.0-alpha10" | "8.0.2" || 6935 | 1024 | 2528
"8.0.0-beta04" | "8.0.2" || 6935 | 1026 | 2528
"7.4.1" | "7.6" || 7273 | 1065 | 2657
"7.3.1" | "7.6" || 7263 | 1037 | 2666
Expand Down Expand Up @@ -85,7 +85,7 @@ class IntegrationSpec extends Specification {

where:
agpVersion | gradleVersion || numMethods | numClasses | numFields
"8.1.0-alpha08" | "8.0.2" || 4 | 3 | 0
"8.1.0-alpha10" | "8.0.2" || 4 | 3 | 0
"8.0.0-beta04" | "8.0.2" || 4 | 3 | 0
"7.4.1" | "7.6" || 7 | 5 | 3
"7.3.1" | "7.6" || 7 | 5 | 3
Expand Down Expand Up @@ -115,7 +115,7 @@ class IntegrationSpec extends Specification {

where:
agpVersion | gradleVersion || numMethods | numClasses | numFields
"8.1.0-alpha08" | "8.0.2" || 4240 | 725 | 1265
"8.1.0-alpha10" | "8.0.2" || 4240 | 725 | 1265
"8.0.0-beta04" | "8.0.2" || 4240 | 725 | 1265
"7.4.1" | "7.6" || 4242 | 726 | 1268
"7.3.1" | "7.6" || 4277 | 745 | 1284
Expand Down Expand Up @@ -145,7 +145,7 @@ class IntegrationSpec extends Specification {

where:
agpVersion | gradleVersion || numMethods | numClasses | numFields
"8.1.0-alpha08" | "8.0.2" || 6941 | 1030 | 2528
"8.1.0-alpha10" | "8.0.2" || 6935 | 1024 | 2528
"8.0.0-beta04" | "8.0.2" || 6935 | 1026 | 2528
"7.4.1" | "7.6" || 7273 | 1065 | 2657
"7.3.1" | "7.6" || 7263 | 1037 | 2666
Expand Down

0 comments on commit e53b544

Please sign in to comment.