Android Studio 没有assets目录的问题

Android Studio 没有assets目录的问题

Where to place the assets folder in Android Studio

 

If you are having problems with asset files not being included in your compiled apk file, it may be because your assets folder is placed in the wrong directory.

The assets folder should usually be inside the following folder:

<project>/src/main/

That is the default, but make sure to check the asset folder configuration setting in your projects .iml file, to be sure which folder it really is:

<option name=”ASSETS_FOLDER_RELATIVE_PATH” value=”/src/main/assets” />

The path to the assets folder should be:

<project>/src/main/assets

place all your assets inside, and the files should now get included in the build!

If not, try cleaning t he project, by going to Build -> Clean project
or running  ./gradlew clean

Android Studio 没有assets目录的问题

转:http://envyandroid.com/archives/1074/assets-android-studio
上一篇:css3动画属性(transitions:property duration timing transition-delay)


下一篇:知识点:Mysql 基本用法之流程控制