2013-12-07 10:07:58 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-10-03 12:51:46 +00:00
|
|
|
package="eu.chainfire.opendelta"
|
2021-07-26 18:18:57 +00:00
|
|
|
coreApp="true"
|
2022-10-02 10:47:43 +00:00
|
|
|
android:versionCode="13"
|
2022-10-18 11:33:39 +00:00
|
|
|
android:versionName="2.0" >
|
2020-05-17 23:56:56 +00:00
|
|
|
|
2018-10-03 12:51:46 +00:00
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
2021-07-26 18:18:57 +00:00
|
|
|
<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE" />
|
2022-08-01 01:17:15 +00:00
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
2018-10-03 12:51:46 +00:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
|
|
|
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_CACHE_FILESYSTEM" />
|
|
|
|
<uses-permission android:name="android.permission.REBOOT" />
|
|
|
|
<uses-permission android:name="android.permission.RECOVERY" />
|
2019-03-21 00:07:38 +00:00
|
|
|
<uses-permission android:name="android.permission.MANAGE_USERS" />
|
2019-11-30 12:41:08 +00:00
|
|
|
<uses-permission android:name="android.permission.MANAGE_DOCUMENTS" />
|
2020-05-17 23:56:56 +00:00
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
2022-10-02 10:47:43 +00:00
|
|
|
<uses-permission android:name="android.permission.POST_NOTIFICATIONS"/>
|
2013-12-07 10:07:58 +00:00
|
|
|
|
2018-10-03 12:51:46 +00:00
|
|
|
<protected-broadcast android:name="eu.chainfire.opendelta.intent.BROADCAST_STATE" />
|
|
|
|
|
|
|
|
<application
|
|
|
|
android:name="eu.chainfire.opendelta.Application"
|
2022-08-11 21:16:18 +00:00
|
|
|
android:theme="@style/Theme.SubSettingsBase"
|
2018-10-03 12:51:46 +00:00
|
|
|
android:allowBackup="true"
|
2021-11-22 15:44:34 +00:00
|
|
|
android:icon="@mipmap/yaap"
|
2018-10-03 12:51:46 +00:00
|
|
|
android:label="@string/app_name"
|
2019-10-08 09:06:27 +00:00
|
|
|
android:appComponentFactory="androidx.core.app.CoreComponentFactory"
|
2021-07-26 18:18:57 +00:00
|
|
|
android:requiredForAllUsers="true"
|
2022-08-01 01:17:15 +00:00
|
|
|
android:requestLegacyExternalStorage="true"
|
|
|
|
android:persistent="true">
|
2015-10-22 15:53:34 +00:00
|
|
|
|
2018-10-03 12:51:46 +00:00
|
|
|
<activity
|
|
|
|
android:name="eu.chainfire.opendelta.MainActivity"
|
2022-08-16 04:02:04 +00:00
|
|
|
android:screenOrientation="portrait"
|
2018-10-03 12:51:46 +00:00
|
|
|
android:label="@string/title"
|
|
|
|
android:launchMode="singleInstance"
|
2022-08-11 21:16:18 +00:00
|
|
|
android:theme="@style/Theme.SubSettingsBase"
|
2022-08-01 01:17:15 +00:00
|
|
|
android:exported="true" >
|
2018-10-03 12:51:46 +00:00
|
|
|
<intent-filter android:priority="2147483647" >
|
|
|
|
<action android:name="android.settings.SYSTEM_UPDATE_SETTINGS" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name="eu.chainfire.opendelta.Shortcut"
|
|
|
|
android:label="@string/title"
|
2022-08-11 21:16:18 +00:00
|
|
|
android:theme="@style/Theme.SubSettingsBase"
|
2022-08-01 01:17:15 +00:00
|
|
|
android:exported="true" >
|
2018-10-03 12:51:46 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.CREATE_SHORTCUT" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name="eu.chainfire.opendelta.SettingsActivity"
|
|
|
|
android:label="@string/menu_settings"
|
2022-08-11 21:16:18 +00:00
|
|
|
android:theme="@style/Theme.SubSettingsBase"
|
2022-08-01 01:17:15 +00:00
|
|
|
android:exported="false" >
|
2018-10-03 12:51:46 +00:00
|
|
|
</activity>
|
2022-08-01 01:17:15 +00:00
|
|
|
<receiver android:name="eu.chainfire.opendelta.BootCompleteReceiver"
|
|
|
|
android:exported="true" >
|
2018-10-03 12:51:46 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
<service
|
|
|
|
android:name="eu.chainfire.opendelta.UpdateService"
|
|
|
|
android:exported="false" />
|
|
|
|
</application>
|
2013-12-07 10:07:58 +00:00
|
|
|
</manifest>
|