Reputation: 1343
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
Reputation: 2321
Go through File > New > Folder > Assets folder.
No need to check change folder location.
Upvotes: 17
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