I am new in Android studio so I face some problem with it. so please anyone can give me a way how to project clean in Android studio.
In Eclipse Project -> clean -> OK
but I don't know how it is done with Android Studio.
I am new in Android studio so I face some problem with it. so please anyone can give me a way how to project clean in Android studio.
In Eclipse Project -> clean -> OK
but I don't know how it is done with Android Studio.
Step 1 Step 2
Note- Never clean your project using the Build -> Clean Project.Instead of cleaning your project it will increase the size of it.
Edit- clean has been replaced by cleanBuildCache in the recent versions of Android Studio.
You can clean your project doing this
Build > Clean Project
orBuild > Rebuild Project
Also you can do the
gradlew clean
As @Kellogs commented :
Manually delete the
[project]/.gradle
ashidden folder
as that one is the main culprit for large cleaned projects sizes.