Skip to content

Commit b09a000

Browse files
Support AGP 8.0.0-alpha09 (#489)
1 parent b958bed commit b09a000

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

gradle/libs.versions.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ thrifty = "3.0.0"
55
[libraries]
66

77
# Build + runtime dependencies
8-
androidTools-agp = "com.android.tools.build:gradle:8.0.0-alpha08" # Note that updates here usually require updates to androidTools-repository
8+
androidTools-agp = "com.android.tools.build:gradle:8.0.0-alpha09" # Note that updates here usually require updates to androidTools-repository
99
androidTools-r8 = "com.android.tools:r8:3.3.28"
10-
androidTools-repository = "com.android.tools:repository:31.0.0-alpha08"
10+
androidTools-repository = "com.android.tools:repository:31.0.0-alpha09"
1111
autoValue-processor = { module = "com.google.auto.value:auto-value", version.ref = "autoValue" }
1212
autoValue-annotations = { module = "com.google.auto.value:auto-value-annotations", version.ref = "autoValue" }
1313
commons-io = "commons-io:commons-io:2.10.0"

src/integrationTest/groovy/com/getkeepsafe/dexcount/IntegrationSpec.groovy

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class IntegrationSpec extends Specification {
3131

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

8888
where:
8989
agpVersion | gradleVersion || numMethods | numClasses | numFields
90-
"8.0.0-alpha08" | "7.5" || 7 | 5 | 3
90+
"8.0.0-alpha09" | "7.5" || 4 | 3 | 0
9191
"7.4.0-rc01" | "7.5" || 7 | 5 | 3
9292
"7.3.1" | "7.5" || 7 | 5 | 3
9393
"7.2.2" | "7.5" || 7 | 5 | 3
@@ -121,7 +121,7 @@ class IntegrationSpec extends Specification {
121121

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

156156
where:
157157
agpVersion | gradleVersion || numMethods | numClasses | numFields
158-
"8.0.0-alpha08" | "7.5" || 6938 | 1022 | 2527
158+
"8.0.0-alpha09" | "7.5" || 6928 | 1018 | 2527
159159
"7.4.0-rc01" | "7.5" || 7289 | 1072 | 2657
160160
"7.3.1" | "7.5" || 7263 | 1037 | 2666
161161
"7.2.2" | "7.5" || 7410 | 925 | 2666

0 commit comments

Comments
 (0)