I've a mobile website from which I build a phonegap app for android.
Unter assets\www
I've put the website files that also includes some server side PHP scripts.
That works pretty well. My question is, how can I exclude the php files when building an apk?
I already tried to put this in my build.xml
, but without any effect:
<property name="aapt.ignore.assets" value="foo.php" />
Thanks in advance for any kind of help.