Phonegap + Jquery mobile app not working on android device -


i developed simple jqm app , i'm using phonegap compile android , ios. app works on chrome, doesn't work on android device (nexus s). app makes few calls rest api deplyed on cloud service. have same issue? i'm using cloud service phonegap compile app. thanks.

$.getjson( serverurl + "elementi/categoria/0", function( data ){     $.each( data, function(key, value) {         vetrina.push(value);         vetrinaimg.push('<div class="swiper-slide"><img src="' + serverurl + 'items/' + value._id['$id'] +'/1.jpg" /></div>');     }); }); 

i think may forgot allow access server, may use <access origin="*" /> config.xml file allow access urls testing.


Comments

Popular posts from this blog

c++ - CryptStringToBinary API behavior -

c++ - Correct method for redrawing a layered window -

java.util.scanner - How to read and add only numbers to array from a text file -