I created a phonegap application that should communicate with a self-signed SSL service.
I included my url in res / xml / cordova.xml like this:
<access origin="https://www.mydomain.com" subdomains="true" />
and this works fine when I start and create from eclipse, but if I then export and sign the application and manually install the APK, then the application will not be able to contact my web service.
Communication with the server is performed using the Sencha Touch library as follows:
Ext.Ajax.request({ url: 'https://www.mydomain.com', method: 'get', success: function(result) { }, failure: function(result) { } });
Any help is much appreciated
source share