How to fetch device information from a progressive web app
Asked Answered
S

1

10

How to fetch device information (Google Advertising Id or IDFA) from a progressive web app

https://developers.google.com/web/progressive-web-apps/

Shirty answered 11/8, 2016 at 7:23 Comment(1)
Did you get any clues for the question, me too searching for the same..Claudianus
V
4

Google Advertising ID is not accessible to progressive web app running in browser and so the installed PWA.

Said that, you can make it available to your installed PWA using an Android service(which is a native code getting the Google Advertising ID) and passing it to your PWA using Deep links, by setting a Indent filter to your PWA with a URL and have the ID retrieved in your native code passed to web app in the query para (URL).

You can refer to this java code to retrieve device identifiers and wrap it as a Android service, which calls your PWA using deep links.

Vyner answered 2/4, 2018 at 21:15 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.