2019-04-02 19:08:43 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2021-08-13 13:29:11 +03:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2020-08-03 19:23:05 +03:00
|
|
|
package="im.vector.app">
|
2019-04-02 19:08:43 +03:00
|
|
|
|
2019-06-20 16:22:40 +03:00
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
2021-08-13 13:29:11 +03:00
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
2020-09-08 13:28:29 +03:00
|
|
|
<!--
|
|
|
|
Required for long polling account synchronisation in background.
|
|
|
|
If not present ACTION_REQUEST_IGNORE_BATTERY_OPTIMIZATIONS intent action won't work
|
|
|
|
-->
|
|
|
|
<uses-permission android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS" />
|
2019-06-20 16:22:40 +03:00
|
|
|
|
2019-04-02 19:08:43 +03:00
|
|
|
<application>
|
|
|
|
|
2021-11-09 13:29:21 +03:00
|
|
|
<receiver
|
|
|
|
android:name=".fdroid.receiver.OnApplicationUpgradeOrRebootReceiver"
|
|
|
|
android:exported="false">
|
2019-04-02 19:08:43 +03:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MY_PACKAGE_REPLACED" />
|
2019-06-20 16:22:40 +03:00
|
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
2019-04-02 19:08:43 +03:00
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
|
2019-06-20 16:22:40 +03:00
|
|
|
<receiver
|
2019-07-02 18:27:08 +03:00
|
|
|
android:name=".fdroid.receiver.AlarmSyncBroadcastReceiver"
|
2019-06-20 16:22:40 +03:00
|
|
|
android:enabled="true"
|
2019-06-26 14:32:55 +03:00
|
|
|
android:exported="false" />
|
2019-06-20 16:22:40 +03:00
|
|
|
|
2021-08-13 13:29:11 +03:00
|
|
|
<service
|
|
|
|
android:name=".fdroid.service.GuardService"
|
|
|
|
android:exported="false"
|
|
|
|
tools:ignore="Instantiatable" />
|
|
|
|
|
2019-04-02 19:08:43 +03:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|