Skip to content Skip to sidebar Skip to footer

Android Studio Only Shows Gradle Files In Project And Android In The "project" Side Menu, All Other Folders Have Nothing To Show

I want to know how to make my project files appear in the 'Project' side menu pictured here (Here is the Android folder which I mentioned also actually had content). I can find th

Solution 1:

I delete .idea and .gradle folders and restart android studio.

this resolve my issue.

thanks.

Solution 2:

Usually, the reason why files disappears is either you had a gradle sync problem when importing the project OR there is a problem with your settings.gradle who's in charge to tell AS which module to load for the project. (usually simply include ':app' on new projects).

Try File / Sync Project with Gradle Files

You can also try to simply Close the project and reopening it (File / Close Project) If this does not work, you should try and post your app/build.gradle file to help further.

Post a Comment for "Android Studio Only Shows Gradle Files In Project And Android In The "project" Side Menu, All Other Folders Have Nothing To Show"