mirror of
https://github.com/fankes/MIUINativeNotifyIcon.git
synced 2025-09-06 02:35:32 +08:00
83 lines
3.0 KiB
XML
83 lines
3.0 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"
|
||
package="com.fankes.miui.notify">
|
||
|
||
<uses-permission android:name="android.permission.INTERNET" />
|
||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
||
|
||
<application
|
||
android:name=".application.MNNApplication"
|
||
android:allowBackup="true"
|
||
android:icon="@mipmap/ic_launcher"
|
||
android:label="@string/app_name"
|
||
android:roundIcon="@mipmap/ic_launcher_round"
|
||
android:supportsRtl="true"
|
||
android:theme="@style/Theme.MIUINativeNotifyIcon"
|
||
android:usesCleartextTraffic="true"
|
||
tools:ignore="AllowBackup,ExportedService">
|
||
|
||
<meta-data
|
||
android:name="xposedmodule"
|
||
android:value="true" />
|
||
<meta-data
|
||
android:name="xposeddescription"
|
||
android:value="为金凡教我做事的 MIUI 修复 12.5、13 后期被破坏的彩色图标。\n开发者:酷安 @星夜不荟" />
|
||
<meta-data
|
||
android:name="xposedminversion"
|
||
android:value="93" />
|
||
<meta-data
|
||
android:name="xposedscope"
|
||
android:resource="@array/module_scope" />
|
||
|
||
<activity
|
||
android:name=".ui.activity.MainActivity"
|
||
android:exported="true"
|
||
android:screenOrientation="behind">
|
||
|
||
<intent-filter>
|
||
<action android:name="android.intent.action.MAIN" />
|
||
|
||
<category android:name="de.robv.android.xposed.category.MODULE_SETTINGS" />
|
||
</intent-filter>
|
||
</activity>
|
||
|
||
<activity-alias
|
||
android:name=".Home"
|
||
android:enabled="true"
|
||
android:exported="true"
|
||
android:label="@string/app_name"
|
||
android:screenOrientation="behind"
|
||
android:targetActivity=".ui.activity.MainActivity">
|
||
|
||
<intent-filter>
|
||
<action android:name="android.intent.action.MAIN" />
|
||
|
||
<category android:name="android.intent.category.LAUNCHER" />
|
||
</intent-filter>
|
||
</activity-alias>
|
||
|
||
<activity
|
||
android:name=".ui.activity.ConfigureActivity"
|
||
android:exported="true"
|
||
android:screenOrientation="behind" />
|
||
|
||
<activity
|
||
android:name=".ui.activity.auto.NotifyIconRuleUpdateActivity"
|
||
android:excludeFromRecents="true"
|
||
android:exported="true"
|
||
android:theme="@android:style/Theme.Translucent.NoTitleBar" />
|
||
|
||
<service
|
||
android:name=".service.QuickStartTileService"
|
||
android:exported="true"
|
||
android:icon="@drawable/ic_notify_icon"
|
||
android:label="@string/tile_name"
|
||
android:permission="android.permission.BIND_QUICK_SETTINGS_TILE">
|
||
|
||
<intent-filter>
|
||
<action android:name="android.service.quicksettings.action.QS_TILE" />
|
||
</intent-filter>
|
||
</service>
|
||
</application>
|
||
</manifest> |