Skip to content

Commit ef6e008

Browse files
Test with AGP 8.7.2 (#518)
1 parent 1cd6572 commit ef6e008

File tree

2 files changed

+15
-11
lines changed

2 files changed

+15
-11
lines changed

gradle/libs.versions.toml

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

77
# Build + runtime dependencies
8-
androidTools-agp = "com.android.tools.build:gradle:8.3.0-alpha07" # Note that updates here usually require updates to androidTools-repository
8+
androidTools-agp = "com.android.tools.build:gradle:8.7.2" # 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.3.0-alpha07"
10+
androidTools-repository = "com.android.tools:repository:31.7.2"
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" }
13-
commons-io = "commons-io:commons-io:2.10.0"
13+
commons-io = "commons-io:commons-io:2.14.0"
1414
gson = "com.google.code.gson:gson:2.10.1"
1515
javassist = "org.javassist:javassist:3.29.2-GA"
1616
thriftyRuntime = { module = "com.microsoft.thrifty:thrifty-runtime-jvm", version.ref = "thrifty" }

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

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

3232
where:
3333
agpVersion | gradleVersion || numMethods | numClasses | numFields
34-
"8.3.0-alpha07" | "8.4" || 6932 | 1023 | 2528
35-
"8.2.0-beta06" | "8.4" || 6932 | 1023 | 2528
34+
"8.7.2" | "8.10.2" || 6934 | 1023 | 2528
35+
"8.3.0" | "8.4" || 6932 | 1023 | 2528
36+
"8.2.0" | "8.4" || 6932 | 1023 | 2528
3637
"8.1.2" | "8.4" || 6932 | 1023 | 2528
3738
"8.0.0" | "8.4" || 6929 | 1020 | 2528
3839
"7.4.1" | "7.6" || 7273 | 1065 | 2657
@@ -63,8 +64,9 @@ class IntegrationSpec extends Specification {
6364

6465
where:
6566
agpVersion | gradleVersion || numMethods | numClasses | numFields
66-
"8.3.0-alpha07" | "8.4" || 4 | 3 | 0
67-
"8.2.0-beta06" | "8.4" || 4 | 3 | 0
67+
"8.7.2" | "8.10.2" || 4 | 3 | 0
68+
"8.3.0" | "8.4" || 4 | 3 | 0
69+
"8.2.0" | "8.4" || 4 | 3 | 0
6870
"8.1.2" | "8.4" || 4 | 3 | 0
6971
"8.0.0" | "8.4" || 4 | 3 | 0
7072
"7.4.1" | "7.6" || 7 | 5 | 3
@@ -95,8 +97,9 @@ class IntegrationSpec extends Specification {
9597

9698
where:
9799
agpVersion | gradleVersion || numMethods | numClasses | numFields
98-
"8.3.0-alpha07" | "8.4" || 4240 | 725 | 1265
99-
"8.2.0-beta06" | "8.4" || 4240 | 725 | 1265
100+
"8.7.2" | "8.10.2" || 4243 | 725 | 1265
101+
"8.3.0" | "8.4" || 4240 | 725 | 1265
102+
"8.2.0" | "8.4" || 4240 | 725 | 1265
100103
"8.1.2" | "8.4" || 4240 | 725 | 1265
101104
"8.0.0" | "8.4" || 4240 | 725 | 1265
102105
"7.4.1" | "7.6" || 4242 | 726 | 1268
@@ -127,8 +130,9 @@ class IntegrationSpec extends Specification {
127130

128131
where:
129132
agpVersion | gradleVersion || numMethods | numClasses | numFields
130-
"8.3.0-alpha07" | "8.4" || 6932 | 1023 | 2528
131-
"8.2.0-beta06" | "8.4" || 6932 | 1023 | 2528
133+
"8.7.2" | "8.10.2" || 6934 | 1023 | 2528
134+
"8.3.0" | "8.4" || 6932 | 1023 | 2528
135+
"8.2.0" | "8.4" || 6932 | 1023 | 2528
132136
"8.1.2" | "8.4" || 6932 | 1023 | 2528
133137
"8.0.0" | "8.4" || 6929 | 1020 | 2528
134138
"7.4.1" | "7.6" || 7273 | 1065 | 2657

0 commit comments

Comments
 (0)