mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-26 14:21:16 +00:00
Poll faster on "modern" devices
This commit is contained in:
parent
044404e9f0
commit
0f135c1ed2
1 changed files with 7 additions and 2 deletions
|
@ -110,9 +110,14 @@ public class Constants {
|
||||||
public static final int PERM_REQ_ACCESS_COARSE_LOCATION = 999; // for issue #999
|
public static final int PERM_REQ_ACCESS_COARSE_LOCATION = 999; // for issue #999
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Interval in ms at which the GUI is updated (eg {@link com.nutomic.syncthingandroid.fragments.DrawerFragment}).
|
* Interval in ms at which RestAPI is polled.
|
||||||
|
* As a rule of thumb: Poll faster on "modern" devices.
|
||||||
*/
|
*/
|
||||||
public static final long GUI_UPDATE_INTERVAL = TimeUnit.SECONDS.toMillis(5);
|
public static final long GUI_UPDATE_INTERVAL = TimeUnit.SECONDS.toMillis(
|
||||||
|
(Build.VERSION.SDK_INT >= Build.VERSION_CODES.O)
|
||||||
|
? 3
|
||||||
|
: 5
|
||||||
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Directory where config is exported to and imported from.
|
* Directory where config is exported to and imported from.
|
||||||
|
|
Loading…
Reference in a new issue