mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-31 20:25:38 +00:00
Added forground services types
This commit is contained in:
parent
ff11c6a9e8
commit
196d204c9b
1 changed files with 9 additions and 3 deletions
|
@ -184,13 +184,19 @@
|
|||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<service android:name=".ServiceSynchronize" />
|
||||
<service
|
||||
android:name=".ServiceSynchronize"
|
||||
android:foregroundServiceType="dataSync" />
|
||||
|
||||
<service android:name=".ServiceSend" />
|
||||
<service
|
||||
android:name=".ServiceSend"
|
||||
android:foregroundServiceType="dataSync" />
|
||||
|
||||
<service android:name=".ServiceUI" />
|
||||
|
||||
<service android:name=".ServiceExternal">
|
||||
<service
|
||||
android:name=".ServiceExternal"
|
||||
android:foregroundServiceType="dataSync">
|
||||
<intent-filter>
|
||||
<action android:name="${applicationId}.ENABLE" />
|
||||
<action android:name="${applicationId}.DISABLE" />
|
||||
|
|
Loading…
Reference in a new issue