Files
statusbartweak/app/src/main/AndroidManifest.xml
T
2026-06-08 00:10:37 +00:00

46 lines
1.8 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission
android:name="android.permission.QUERY_ALL_PACKAGES"
tools:ignore="QueryAllPackagesPermission" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<application
android:label="@string/app_name"
android:description="@string/module_description"
android:icon="@mipmap/ic_launcher">
<activity
android:name=".shell.ui.MainActivity"
android:exported="true"
android:theme="@style/Theme.StatusBarTweak.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver
android:name=".shell.debug.DebugBootReceiver"
android:exported="false">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<action android:name="android.intent.action.MY_PACKAGE_REPLACED" />
</intent-filter>
</receiver>
<receiver
android:name=".shell.debug.DebugNotificationDeleteReceiver"
android:exported="false" />
<provider
android:name=".shell.settings.SbtSettingsProvider"
android:authorities="se.ajpanton.statusbartweak.settings"
android:exported="true"
tools:ignore="ExportedContentProvider" />
</application>
</manifest>