asker
asker

Reputation: 346

assets folder missing in LibGDX project

I need to add some files to my android/assets folder of my project however, it isn't there ? I may have accidentally deleted it without knowing.

how do I create the assets folder?

Upvotes: 0

Views: 257

Answers (1)

Amit Vaghela
Amit Vaghela

Reputation: 22945

Android studio doest provide ASSETS folder by default

you have to create it from

enter image description here


 For the Android plugin, extra files and folders specific to Android:

        AndroidManifest.xml
        res/
        assets/
        aidl/
        rs/
        jni/
        jniLibs/

Please read where to place asset folder

Upvotes: 1

Related Questions