user1253359
user1253359

Reputation: 81

Solution for identify mobile devices by mobile browser

I'm wondering it's possible to identify android device by web app running on mobile web browser? And this solution have to still working after change or upgrade web browser on this phone.

My second doubt is web app can working offline on phone showing PDF presentations saved in local storage (disk). When I have internet connection I can manually sync presentations (some are removed and some are downloaded).

If PWA app can work like I described above or in this case we need to use (hybrid) mobile app ?

Upvotes: 0

Views: 51

Answers (1)

Francesco
Francesco

Reputation: 10830

PWAs allow to cache assets and make them available to the users even when they are offline. There are some functionalities that only Native Apps have (eg. access to a device contacts), but they are very close under many other aspects.

I wrote an article about Service Workers and caching strategies where I explain how to cache static assets as well as HTTP GET calls. It is part of a series about PWAs, so you might find it useful to get more insights about this technology.

Have a look at the website what web can do today to have a list of WEB APIs currently available:

enter image description here

I do not know the detail of your requirements, but maybe you do not even need to implement an hybrid app and simply create a PWA.

Upvotes: 2

Related Questions