2019-01-11 09:44:36 +08:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2019-06-22 17:03:17 +08:00
|
|
|
package="com.github.shadowsocks.plugin.v2ray"
|
|
|
|
android:installLocation="internalOnly">
|
2019-01-11 09:44:36 +08:00
|
|
|
<uses-feature android:name="android.hardware.touchscreen"
|
|
|
|
android:required="false"/>
|
|
|
|
<application android:allowBackup="false"
|
2019-06-22 17:03:17 +08:00
|
|
|
android:extractNativeLibs="true"
|
2019-01-11 09:44:36 +08:00
|
|
|
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"/>
|
2019-06-20 09:36:40 +08:00
|
|
|
<meta-data android:name="com.github.shadowsocks.plugin.executable_path"
|
|
|
|
android:value="libv2ray.so"/>
|
2019-01-11 09:44:36 +08:00
|
|
|
</provider>
|
2019-01-14 13:29:28 +08:00
|
|
|
<activity android:name=".ConfigActivity">
|
2019-01-11 09:44:36 +08:00
|
|
|
<intent-filter>
|
2019-01-14 13:29:28 +08:00
|
|
|
<action android:name="com.github.shadowsocks.plugin.ACTION_CONFIGURE"/>
|
2019-01-11 09:44:36 +08:00
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
<data android:scheme="plugin"
|
|
|
|
android:host="com.github.shadowsocks"
|
|
|
|
android:path="/v2ray"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
</application>
|
|
|
|
</manifest>
|