You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The project encountered synchronization errors when attempting to update the Android Gradle Plugin (AGP) version. After modifying the build.gradle file to use AGP 8.7.2, the project failed to sync due to incompatibility between the AGP and the current Gradle version 8.6. The minimum required Gradle version for AGP 8.7.2 is 8.9.
This issue blocks the project from building and prevents updates or releases to be published in Google Play.
To Reproduce
Steps to reproduce the behavior:
Open the project in Android Studio.
Modify the build.gradle file:
id 'com.android.application' version '8.7.2' apply false
id 'com.android.library' version '8.7.2' apply false
Attempt to sync the project.
Observe the synchronization error: "Minimum supported Gradle version is 8.9. Current version is 8.6."
Description
The project encountered synchronization errors when attempting to update the Android Gradle Plugin (AGP) version. After modifying the
build.gradle
file to use AGP 8.7.2, the project failed to sync due to incompatibility between the AGP and the current Gradle version 8.6. The minimum required Gradle version for AGP 8.7.2 is 8.9.This issue blocks the project from building and prevents updates or releases to be published in Google Play.
To Reproduce
Steps to reproduce the behavior:
build.gradle
file:Proposed Solution
Update the
gradle-wrapper.properties
file:Delete any cached Gradle distributions to avoid conflicts:
rm -rf ~/.gradle/wrapper/dists/gradle-8.9-all
Resynchronize the project in Android Studio:
Why It's Important
Others
The text was updated successfully, but these errors were encountered: