Sweg
Sweg

Reputation: 99

Missing Files in Android Studio

I have a project which I can open on the computer which I created the project on.

However, when I upload it to Google Drive, download and unzip it onto a different computer, and open the project in Android Studio the only files which are appearing are Java files. See this screenshot:

enter image description here

Also, when I open the project in file explorer, this appears:

enter image description here

Does anyone have any advice on how to solve this?

Upvotes: 0

Views: 1331

Answers (1)

Aayush Thakur
Aayush Thakur

Reputation: 674

You need to import the project the correct way.

Go to File->New->Import Project->Select your project
Choose Import from external model and select Gradle. Press Next.
Then make sure to select the correct location or gradle OR gradle wrapper.
Then press Finish.

Hope This works.

Upvotes: 1

Related Questions