Files
Exclave/xtls-plugin/src/main/AndroidManifest.xml
2021-05-01 03:16:08 +08:00

37 lines
1.4 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="io.nekohasekai.sagernet.plugin.xtls"
android:installLocation="internalOnly">
<application
android:allowBackup="false"
android:extractNativeLibs="true"
android:label="XTLS Plugin">
<provider
android:name=".BinaryProvider"
android:authorities="io.nekohasekai.sagernet.plugin.xtls.BinaryProvider"
android:directBootAware="true"
android:exported="true"
tools:ignore="ExportedContentProvider">
<intent-filter>
<action android:name="io.nekohasekai.sagernet.plugin.ACTION_NATIVE_PLUGIN" />
</intent-filter>
<intent-filter>
<action android:name="io.nekohasekai.sagernet.plugin.ACTION_NATIVE_PLUGIN" />
<data
android:host="io.nekohasekai.sagernet"
android:path="/xtls-plugin"
android:scheme="plugin" />
</intent-filter>
<meta-data
android:name="io.nekohasekai.sagernet.plugin.id"
android:value="xtls-plugin" />
<meta-data
android:name="io.nekohasekai.sagernet.plugin.executable_path"
android:value="libxrayexec.so" />
</provider>
</application>
</manifest>