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).
Asked
Active
Viewed 4,785 times
2 Answers
15

DHAVAL A.
- 2,251
- 2
- 12
- 27
-
Thanks for replying, but I do not get a Folder option, I just get File->New->Directory, and that does not have an "Assets Folder" menu item. – Martin Ellison Dec 27 '19 at 04:48
-
@MartinEllison First select the **app folder from left panel** and then click on the File > ... > Folder. You will get Assets Folder there. – DHAVAL A. Dec 27 '19 at 04:52
-
@MartinEllison hope my answer clears your doubt. First you have to select `main` folder then do right click. – Pratik Butani Dec 27 '19 at 06:16
2
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.

Pratik Butani
- 60,504
- 58
- 273
- 437