Skip to content

Commit

Permalink
Support AGP 8.3.0-alpha07 (#515)
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamin-bader committed Oct 11, 2023
1 parent 195af0e commit 931fc5d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 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.2.0-beta06" # Note that updates here usually require updates to androidTools-repository
androidTools-agp = "com.android.tools.build:gradle:8.3.0-alpha07" # 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.2.0-beta06"
androidTools-repository = "com.android.tools:repository:31.3.0-alpha07"
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 @@ -3,7 +3,6 @@ package com.getkeepsafe.dexcount
import org.apache.commons.io.FileUtils
import org.gradle.testkit.runner.GradleRunner
import org.gradle.testkit.runner.TaskOutcome
import spock.lang.Ignore
import spock.lang.Shared
import spock.lang.Specification
import spock.lang.Unroll
Expand Down Expand Up @@ -32,6 +31,7 @@ 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.1.2" | "8.4" || 6932 | 1023 | 2528
"8.0.0" | "8.4" || 6929 | 1020 | 2528
Expand Down Expand Up @@ -63,6 +63,7 @@ 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.1.2" | "8.4" || 4 | 3 | 0
"8.0.0" | "8.4" || 4 | 3 | 0
Expand Down Expand Up @@ -94,6 +95,7 @@ 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.1.2" | "8.4" || 4240 | 725 | 1265
"8.0.0" | "8.4" || 4240 | 725 | 1265
Expand Down Expand Up @@ -125,6 +127,7 @@ 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.1.2" | "8.4" || 6932 | 1023 | 2528
"8.0.0" | "8.4" || 6929 | 1020 | 2528
Expand Down

0 comments on commit 931fc5d

Please sign in to comment.