Skip to content

Commit d17e9cf

Browse files
Support AGP 8.8.0-alpha08 (#519)
1 parent ef6e008 commit d17e9cf

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
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.1.0"
55
[libraries]
66

77
# Build + runtime dependencies
8-
androidTools-agp = "com.android.tools.build:gradle:8.7.2" # Note that updates here usually require updates to androidTools-repository
8+
androidTools-agp = "com.android.tools.build:gradle:8.8.0-alpha08" # Note that updates here usually require updates to androidTools-repository
99
androidTools-r8 = "com.android.tools:r8:8.1.56"
10-
androidTools-repository = "com.android.tools:repository:31.7.2"
10+
androidTools-repository = "com.android.tools:repository:31.8.0-alpha08"
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.14.0"

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

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

3232
where:
3333
agpVersion | gradleVersion || numMethods | numClasses | numFields
34+
"8.8.0-alpha08" | "8.10.2" || 6934 | 1023 | 2528
3435
"8.7.2" | "8.10.2" || 6934 | 1023 | 2528
3536
"8.3.0" | "8.4" || 6932 | 1023 | 2528
3637
"8.2.0" | "8.4" || 6932 | 1023 | 2528
@@ -64,6 +65,7 @@ class IntegrationSpec extends Specification {
6465

6566
where:
6667
agpVersion | gradleVersion || numMethods | numClasses | numFields
68+
"8.8.0-alpha08" | "8.10.2" || 4 | 3 | 0
6769
"8.7.2" | "8.10.2" || 4 | 3 | 0
6870
"8.3.0" | "8.4" || 4 | 3 | 0
6971
"8.2.0" | "8.4" || 4 | 3 | 0
@@ -97,6 +99,7 @@ class IntegrationSpec extends Specification {
9799

98100
where:
99101
agpVersion | gradleVersion || numMethods | numClasses | numFields
102+
"8.8.0-alpha08" | "8.10.2" || 4243 | 725 | 1265
100103
"8.7.2" | "8.10.2" || 4243 | 725 | 1265
101104
"8.3.0" | "8.4" || 4240 | 725 | 1265
102105
"8.2.0" | "8.4" || 4240 | 725 | 1265
@@ -130,6 +133,7 @@ class IntegrationSpec extends Specification {
130133

131134
where:
132135
agpVersion | gradleVersion || numMethods | numClasses | numFields
136+
"8.8.0-alpha08" | "8.10.2" || 6934 | 1023 | 2528
133137
"8.7.2" | "8.10.2" || 6934 | 1023 | 2528
134138
"8.3.0" | "8.4" || 6932 | 1023 | 2528
135139
"8.2.0" | "8.4" || 6932 | 1023 | 2528

0 commit comments

Comments
 (0)