Martin Ellison
Martin Ellison

Reputation: 1343

How do I create an assets folder using current Android Studio (3.5.3)?

Does anyone know how to create an assets folder in an Android project? There are lots of answers to this from about 5 years ago, but they do not work with the current version of Android Studio (3.5.3).

Upvotes: 4

Views: 6204

Answers (2)

DHAVAL A.
DHAVAL A.

Reputation: 2321

Go through File > New > Folder > Assets folder.

No need to check change folder location.

enter image description here

Upvotes: 17

Pratik Butani
Pratik Butani

Reputation: 62391

The assets folder's default location is inside of app/src/main folder.

Just move to that main directory inside YourProjectName -> app -> src -> main

Right click -> New -> Directory -> Type assets -> OK

Thats it.

Upvotes: 2

Related Questions