Reputation: 1051
I've compiled my HTML5 app using phonegap and using Boostrap 3 to help speed development.
I've installed the app on my mobile but some of my images aren't showing.
I'm using svg's but I don't think that is the problem because one of them is loading and the other two aren't. The images test fine and show fine in my web browsers but just not as an app.
Any ideas help, does this have something to do with the config.xml file and outlining the app to have access to resources from a web server?
I'm also looking for advice to how intergrating facebook login works?
Upvotes: 0
Views: 209
Reputation: 4377
please verify in your config.xml
<access origin="*"/>
i think issue may come ios only.
then using cordova only not possible to achieve facebook login. so you need to integrate with facebook connect plugin.
Upvotes: 3
Reputation: 331
http://css-tricks.com/using-svg/
Have a look at the above link. svg has problems with android 2.3 and down.
Upvotes: 0