Skip to content

Commit

Permalink
Updated LoginWpcomService and UploadService to use a foreground servi…
Browse files Browse the repository at this point in the history
…ce type
  • Loading branch information
nbradbury committed Jul 9, 2024
1 parent 80956df commit b7fc983
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions WordPress/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -833,7 +833,7 @@
<service
android:name=".ui.uploads.UploadService"
android:label="Upload Service"
android:foregroundServiceType="dataSync"/>
android:foregroundServiceType="dataSync" />
<service
android:name=".ui.media.services.MediaDeleteService"
android:label="Media Delete Service"
Expand Down Expand Up @@ -920,12 +920,14 @@
<service
android:name=".login.LoginWpcomService"
android:exported="false"
android:label="Login to WPCOM Service" />
android:label="Login to WPCOM Service"
android:foregroundServiceType="dataSync" />

<service
android:name=".ui.sitecreation.services.SiteCreationService"
android:exported="false"
android:label="Site Creation Service" />
android:label="Site Creation Service"
android:foregroundServiceType="dataSync" />

<!-- Samsung multiwindow support -->
<uses-library
Expand Down

0 comments on commit b7fc983

Please sign in to comment.