-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
33 lines (27 loc) · 1.03 KB
/
AndroidManifest.xml
File metadata and controls
33 lines (27 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<queries>
<package android:name="com.app.here" /> <!-- Package name of the app you want to inject -->
</queries>
<application
android:label="XposedImGuiMenu"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
tools:targetApi="31">
<meta-data
android:name="xposedmodule"
android:value="true" />
<meta-data
android:name="xposeddescription"
android:value="Library Injection Module for Xposed" />
<meta-data
android:name="xposedminversion"
android:value="82" />
<meta-data
android:name="xposedscope"
android:value="com.app.here" /> <!-- Package name of the app you want to inject -->
</application>
</manifest>