mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-23 18:15:22 +00:00
40f9b32a75
Tested on Android 9.0, 7.0, and 5.1. Fixes #7936
19 lines
776 B
XML
19 lines
776 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<uses-permission android:name="android.permission.DOWNLOAD_WITHOUT_NOTIFICATION"/>
|
|
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES"/>
|
|
|
|
<application>
|
|
<receiver android:name=".service.UpdateApkRefreshListener">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
</intent-filter>
|
|
</receiver>
|
|
|
|
<receiver android:name=".service.UpdateApkReadyListener">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.DOWNLOAD_COMPLETE"/>
|
|
</intent-filter>
|
|
</receiver>
|
|
</application>
|
|
</manifest> |