40 lines
1.9 KiB
XML
40 lines
1.9 KiB
XML
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
package="com.github.shadowsocks.plugin.v2ray">
|
||
|
<uses-feature android:name="android.hardware.touchscreen"
|
||
|
android:required="false"/>
|
||
|
<application android:allowBackup="false"
|
||
|
android:label="v2ray"
|
||
|
android:icon="@mipmap/ic_launcher">
|
||
|
<provider android:name=".BinaryProvider"
|
||
|
android:exported="true"
|
||
|
android:directBootAware="true"
|
||
|
android:authorities="com.github.shadowsocks.plugin.v2ray.BinaryProvider"
|
||
|
tools:ignore="ExportedContentProvider">
|
||
|
<intent-filter>
|
||
|
<action android:name="com.github.shadowsocks.plugin.ACTION_NATIVE_PLUGIN"/>
|
||
|
</intent-filter>
|
||
|
<intent-filter>
|
||
|
<action android:name="com.github.shadowsocks.plugin.ACTION_NATIVE_PLUGIN"/>
|
||
|
<data android:scheme="plugin"
|
||
|
android:host="com.github.shadowsocks"
|
||
|
android:pathPrefix="/v2ray"/>
|
||
|
</intent-filter>
|
||
|
<meta-data android:name="com.github.shadowsocks.plugin.id"
|
||
|
android:value="v2ray"/>
|
||
|
<meta-data android:name="com.github.shadowsocks.plugin.default_config"
|
||
|
android:value="host=test.example.com"/>
|
||
|
</provider>
|
||
|
<activity android:name=".HelpCallback"
|
||
|
android:theme="@style/Theme.AppCompat.Translucent">
|
||
|
<intent-filter>
|
||
|
<action android:name="com.github.shadowsocks.plugin.ACTION_HELP"/>
|
||
|
<category android:name="android.intent.category.DEFAULT"/>
|
||
|
<data android:scheme="plugin"
|
||
|
android:host="com.github.shadowsocks"
|
||
|
android:path="/v2ray"/>
|
||
|
</intent-filter>
|
||
|
</activity>
|
||
|
</application>
|
||
|
</manifest>
|