Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 570837cd authored by Guillaume Jacquart's avatar Guillaume Jacquart
Browse files

feat:3720: Remove persistent flag, switch to system UID

parent d6c494f2
Loading
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    android:sharedUserId="android.uid.sytem"
    xmlns:tools="http://schemas.android.com/tools">

    <!-- Permissions -->
    <uses-permission android:name="android.permission.INTERNET"/>
    <uses-permission android:name="android.permission.FOREGROUND_SERVICE"/> <!-- For instant delivery foregrounds service -->
    <uses-permission android:name="android.permission.FOREGROUND_SERVICE_SPECIAL_USE"/> <!-- For instant delivery foregrounds service on SDK >= 34 -->
    <uses-permission android:name="android.permission.WAKE_LOCK"/> <!-- To keep foreground service awake; soon not needed anymore -->
<!--    <uses-permission android:name="android.permission.FOREGROUND_SERVICE"/> &lt;!&ndash; For instant delivery foregrounds service &ndash;&gt;-->
<!--    <uses-permission android:name="android.permission.FOREGROUND_SERVICE_SPECIAL_USE"/> &lt;!&ndash; For instant delivery foregrounds service on SDK >= 34 &ndash;&gt;-->
<!--    <uses-permission android:name="android.permission.WAKE_LOCK"/> &lt;!&ndash; To keep foreground service awake; soon not needed anymore &ndash;&gt;-->
    <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/> <!-- To restart service on reboot -->
    <uses-permission android:name="android.permission.VIBRATE"/> <!-- Incoming notifications should be able to vibrate the phone -->
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" android:maxSdkVersion="28"/> <!-- Only required on SDK <= 28 -->
@@ -20,13 +21,13 @@
            for the Google Play variant of the app.
    -->
    <uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES"/>
    <uses-permission android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS" />

    <application
            android:name=".app.Application"
            android:allowBackup="true"
            android:icon="@mipmap/ic_launcher"
            android:label="@string/app_name"
            android:persistent="true"
            android:roundIcon="@mipmap/ic_launcher"
            android:supportsRtl="true"
            android:theme="@style/AppTheme"