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

Fix an inaccessible property in packaging task class since AGP 8.3.0 #192

Merged
merged 2 commits into from
Mar 8, 2024

Conversation

jmatsu
Copy link
Contributor

@jmatsu jmatsu commented Mar 8, 2024

Fix #191

signingConfigData becomes an internal property of Kotlin so it's not accessible from Groovy directly. Instead of that, we can use signingConfigVersions.

We have to use Artifact API as much as possible by the way.

@@ -127,7 +128,10 @@ jobs:
gradle_version: '8.0'
java_version: '17'
- agp_version: '8.2.0'
gradle_version: '8.3'
gradle_version: '8.2'
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This was a mistake. The min gradle version is 8.2 according to the official document.

ss 2024-03-08 at 12 37 06

https://developer.android.com/build/releases/gradle-plugin

@jmatsu jmatsu requested a review from satsukies March 8, 2024 03:42
Copy link
Member

@satsukies satsukies left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM 👍

@jmatsu jmatsu merged commit b619c3b into master Mar 8, 2024
15 checks passed
@jmatsu jmatsu deleted the jmatsu/feat/support_agp_830 branch March 8, 2024 04:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Incompatible with Android Gradle Plugin 8.3.0
2 participants