问题
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