mirror of
https://github.com/fankes/ColorOSNotifyIcon.git
synced 2025-09-01 08:15:32 +08:00
55 lines
2.0 KiB
XML
55 lines
2.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||
package="com.fankes.coloros.notify">
|
||
|
||
<uses-permission android:name="android.permission.INTERNET" />
|
||
|
||
<application
|
||
android:name=".application.CNNApplication"
|
||
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.ColorOSNotifyIcon">
|
||
|
||
<meta-data
|
||
android:name="xposedmodule"
|
||
android:value="true" />
|
||
<meta-data
|
||
android:name="xposeddescription"
|
||
android:value="为 ColorOS 优化通知图标以及适配原生通知图标规范,理论支持 OxygenOS 和 RealmeOS\n开发者:酷安 @星夜不荟" />
|
||
<meta-data
|
||
android:name="xposedminversion"
|
||
android:value="93" />
|
||
|
||
<activity
|
||
android:name=".ui.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:exported="true"
|
||
android:label="@string/app_name"
|
||
android:screenOrientation="behind"
|
||
android:targetActivity=".ui.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.ConfigureActivity"
|
||
android:exported="false"
|
||
android:screenOrientation="behind" />
|
||
</application>
|
||
</manifest> |