Skip to content

Commit e4f203c

Browse files
committed
feat: add helper app manifest
1 parent fd29f48 commit e4f203c

1 file changed

Lines changed: 32 additions & 0 deletions

File tree

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
3+
4+
<application
5+
android:allowBackup="false"
6+
android:icon="@mipmap/ic_launcher"
7+
android:label="@string/app_name"
8+
android:roundIcon="@mipmap/ic_launcher_round"
9+
android:supportsRtl="true"
10+
android:theme="@style/AppTheme">
11+
12+
<meta-data
13+
android:name="xposedmodule"
14+
android:value="true" />
15+
<meta-data
16+
android:name="xposeddescription"
17+
android:value="ColorOS Themes helper for tested OPPO, OnePlus, and realme devices" />
18+
<meta-data
19+
android:name="xposedminversion"
20+
android:value="82" />
21+
22+
<activity
23+
android:name=".MainActivity"
24+
android:exported="true">
25+
<intent-filter>
26+
<action android:name="android.intent.action.MAIN" />
27+
<category android:name="android.intent.category.LAUNCHER" />
28+
</intent-filter>
29+
</activity>
30+
</application>
31+
32+
</manifest>

0 commit comments

Comments
 (0)