Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support AGP 8.3.0-alpha11 & 8.2.0-rc01 #516

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ thrifty = "3.1.0"
[libraries]

# Build + runtime dependencies
androidTools-agp = "com.android.tools.build:gradle:8.3.0-alpha07" # Note that updates here usually require updates to androidTools-repository
androidTools-agp = "com.android.tools.build:gradle:8.3.0-alpha11" # Note that updates here usually require updates to androidTools-repository
androidTools-r8 = "com.android.tools:r8:8.1.56"
androidTools-repository = "com.android.tools:repository:31.3.0-alpha07"
autoValue-processor = { module = "com.google.auto.value:auto-value", version.ref = "autoValue" }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ class IntegrationSpec extends Specification {

where:
agpVersion | gradleVersion || numMethods | numClasses | numFields
"8.3.0-alpha07" | "8.4" || 6932 | 1023 | 2528
"8.2.0-beta06" | "8.4" || 6932 | 1023 | 2528
"8.3.0-alpha11" | "8.4" || 6932 | 1023 | 2528
"8.2.0-rc01" | "8.4" || 6932 | 1023 | 2528
"8.1.2" | "8.4" || 6932 | 1023 | 2528
"8.0.0" | "8.4" || 6929 | 1020 | 2528
"7.4.1" | "7.6" || 7273 | 1065 | 2657
Expand Down Expand Up @@ -63,8 +63,8 @@ class IntegrationSpec extends Specification {

where:
agpVersion | gradleVersion || numMethods | numClasses | numFields
"8.3.0-alpha07" | "8.4" || 4 | 3 | 0
"8.2.0-beta06" | "8.4" || 4 | 3 | 0
"8.3.0-alpha11" | "8.4" || 4 | 3 | 0
"8.2.0-rc01" | "8.4" || 4 | 3 | 0
"8.1.2" | "8.4" || 4 | 3 | 0
"8.0.0" | "8.4" || 4 | 3 | 0
"7.4.1" | "7.6" || 7 | 5 | 3
Expand Down Expand Up @@ -95,8 +95,8 @@ class IntegrationSpec extends Specification {

where:
agpVersion | gradleVersion || numMethods | numClasses | numFields
"8.3.0-alpha07" | "8.4" || 4240 | 725 | 1265
"8.2.0-beta06" | "8.4" || 4240 | 725 | 1265
"8.3.0-alpha11" | "8.4" || 4240 | 725 | 1265
"8.2.0-rc01" | "8.4" || 4240 | 725 | 1265
"8.1.2" | "8.4" || 4240 | 725 | 1265
"8.0.0" | "8.4" || 4240 | 725 | 1265
"7.4.1" | "7.6" || 4242 | 726 | 1268
Expand Down Expand Up @@ -127,8 +127,8 @@ class IntegrationSpec extends Specification {

where:
agpVersion | gradleVersion || numMethods | numClasses | numFields
"8.3.0-alpha07" | "8.4" || 6932 | 1023 | 2528
"8.2.0-beta06" | "8.4" || 6932 | 1023 | 2528
"8.3.0-alpha11" | "8.4" || 6932 | 1023 | 2528
"8.2.0-rc01" | "8.4" || 6932 | 1023 | 2528
"8.1.2" | "8.4" || 6932 | 1023 | 2528
"8.0.0" | "8.4" || 6929 | 1020 | 2528
"7.4.1" | "7.6" || 7273 | 1065 | 2657
Expand Down