Questions tagged [android-datasaver]

5 questions
14
votes
1 answer

Disabling chrome data saver while debugging

I'm trying to inspect a website on chrome for Android with chrome dev tools on my pc. First of all, i check data saver is disabled for chrome on Android and it is Then, i connect my phone with my pc, run chrome dev tools and i get the…
5
votes
1 answer

Is there a way to know if Data Saver is enabled?

Android 7.0 Nougat added Data Saver feature allowing users to restrict background data of certain apps (including push notifications). When Data Saver is ON, only the apps on the list found in Settings → Data Saver → Unrestricted data access are…
Marcel Bro
  • 4,907
  • 4
  • 43
  • 70
2
votes
0 answers

Does IsConnected include Data Saver status?

I use NetworkInfo.isConnected() to determine if my app can make a web request: public boolean isConnected() { ConnectivityManager connectivityManager = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE); …
tir38
  • 9,810
  • 10
  • 64
  • 107
1
vote
0 answers

Django messages are not shown if chrome data saver is enabled

Google data saver compresses data to reduce traffic usage. It is enabled by default in mobile (android) chrome and might be used in desktop chrome as plugin. Whe GDS is on django messages are NOT displayed. I created a sample application (Python…
0
votes
2 answers

How to know if data Saver is enabled on android phones

I know there are a few questions similar to this, ConnectionManager.getRestrictBackgroundStatus() will give me whether background data is disabled for my app. For my use case I want to know specifically if the Data Saver is enabled for all…