Currently, I am storing a stylesheet (CSS file) from the web server into device storage using the file system access method provided in the phonegap guide for File. I need to apply this stylesheet to my app from the device storage, and will be updating the stored stylesheet regularly. In this scenario,
I have a few questions:
Since my app is in .apk format, how will it call the stylesheet from device storage?
If I define a standard path in my HTML like
, will the storage path of the stylesheet<link rel="stylesheet" href="css/stylesheet.css" />
css/stylesheet.css
be different on various mobile devices (e.g., iPhone and Android devices)?