28 lines
1.1 KiB
XML
28 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="org.lsposed.lspatch">
|
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:appComponentFactory="org.lsposed.lspatch.appstub.LSPAppComponentFactoryStub"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/sample_app_title"
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
android:supportsRtl="true">
|
|
<activity android:name="org.lsposed.lspatch.tester.MainActivity"
|
|
android:exported="true">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
<meta-data android:name="xposedmodule" android:value="true"/>
|
|
<meta-data android:name="xposedminversion" android:value="53"/>
|
|
</application>
|
|
|
|
</manifest>
|