Excluding certain folders when building PhoneGap aplication

放肆的年华 提交于 2020-01-03 04:50:25

问题


I have built a PhoneGap app for Android. Under www/ I have some folders, I use when developing my app. I want to exclude these ones, when building the .apk file.

How can I do that?


回答1:


You can add your platform specific files to the /merges folder.

For example, if you have a set of files you want to be packed for iOS only, you can place them under /merges/ios/www/my_folder/my_files.*

This also works if you have 1 CSS with 2 variations for each platform, you can have them as:

/merges/android/www/global.css
/merges/ios/www/global.css

You can read more about merges here.



来源:https://stackoverflow.com/questions/22201898/excluding-certain-folders-when-building-phonegap-aplication

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!