There are multiple ways in which you can find out the version of the Gradle tool that you are using in Android Studio for your Android Project. Let us take a look at a few of them.
- You can simply open your Android Studio IDE and go to Menu: File -> Project Structure... and take a look at the "Android Gradle Plugin Version".


Open the Terminal in Android Studio by going to Menu: View -> Tool Windows -> Terminal. Run the command.
Windows:
Linux/macOS:gradle --version./gradlew --versionNote: This is what you will check only if you are using Gradle installed on your device and not the gradlew.
In your project, look for the gradle-wrapper.properties here you should be able to see the version for property distributionUrl
#Mon May 22 17:30:33 CDT 2023 distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists- When you perform Gradle Sync, in the console you can note the version of Gradle.
... Starting Gradle Daemon... Gradle settings evaluated using settings file 'C:\Users\code2care\AndroidStudioProjects\MyApp\settings.gradle'. Gradle version: 8.0.0 ...
Provide Feedback For This Article
We take your feedback seriously and use it to improve our content. Thank you for helping us serve you better!
😊 Thanks for your time, your feedback has been registered!
Comments & Discussion
Facing issues? Have questions? Post them here! We're happy to help!