diff --git a/mobile/src/main/AndroidManifest.xml b/mobile/src/main/AndroidManifest.xml
index 1b8d3e6a..247fec4e 100644
--- a/mobile/src/main/AndroidManifest.xml
+++ b/mobile/src/main/AndroidManifest.xml
@@ -15,7 +15,7 @@
android:name="android.permission.PACKAGE_USAGE_STATS"
tools:ignore="ProtectedPermissions" />
-
+
@@ -80,7 +80,11 @@
android:name=".BackgroundService"
android:enabled="true"
android:exported="false"
- android:foregroundServiceType="dataSync" />
+ android:foregroundServiceType="specialUse">
+
+
= Build.VERSION_CODES.Q)
- ServiceInfo.FOREGROUND_SERVICE_TYPE_DATA_SYNC
+ if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.UPSIDE_DOWN_CAKE)
+ ServiceInfo.FOREGROUND_SERVICE_TYPE_SPECIAL_USE
else
0
)