47 lines
1.6 KiB
XML
47 lines
1.6 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||
|
|
|
||
|
|
<uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" />
|
||
|
|
|
||
|
|
<application
|
||
|
|
android:allowBackup="false"
|
||
|
|
android:icon="@drawable/ic_launcher"
|
||
|
|
android:label="@string/app_name"
|
||
|
|
android:theme="@style/AppTheme"
|
||
|
|
android:supportsRtl="true">
|
||
|
|
|
||
|
|
<!-- LSPosed module metadata -->
|
||
|
|
<meta-data
|
||
|
|
android:name="xposedmodule"
|
||
|
|
android:value="true" />
|
||
|
|
<meta-data
|
||
|
|
android:name="xposeddescription"
|
||
|
|
android:value="Per-app driver manager: redirect native library loading to custom drivers without modifying system files" />
|
||
|
|
<meta-data
|
||
|
|
android:name="xposedminversion"
|
||
|
|
android:value="93" />
|
||
|
|
<meta-data
|
||
|
|
android:name="xposedscope"
|
||
|
|
android:resource="@array/xposed_scope" />
|
||
|
|
|
||
|
|
<!-- Main Activity -->
|
||
|
|
<activity
|
||
|
|
android:name=".ui.MainActivity"
|
||
|
|
android:exported="true"
|
||
|
|
android:launchMode="singleTask">
|
||
|
|
<intent-filter>
|
||
|
|
<action android:name="android.intent.action.MAIN" />
|
||
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
||
|
|
</intent-filter>
|
||
|
|
</activity>
|
||
|
|
|
||
|
|
<!-- Config provider for sharing prefs with hook process -->
|
||
|
|
<provider
|
||
|
|
android:name=".manager.ConfigProvider"
|
||
|
|
android:authorities="com.seteclabs.drivermanager.config"
|
||
|
|
android:exported="false"
|
||
|
|
android:grantUriPermissions="true" />
|
||
|
|
|
||
|
|
</application>
|
||
|
|
</manifest>
|