v2ray-plugin-android/app/src/main/AndroidManifest.xml

51 lines
2.5 KiB
XML
Raw Normal View History

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"
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"
android:extractNativeLibs="true"
android:label="v2ray-plugin"
2019-01-11 09:44:36 +08:00
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"
2020-02-04 09:50:41 +08:00
android:path="/v2ray"/>
</intent-filter>
<intent-filter>
<action android:name="com.github.shadowsocks.plugin.ACTION_NATIVE_PLUGIN"/>
<data android:scheme="plugin"
android:host="com.github.shadowsocks"
android:path="/v2ray-plugin"/>
2019-01-11 09:44:36 +08:00
</intent-filter>
<meta-data android:name="com.github.shadowsocks.plugin.id"
2020-02-04 09:50:41 +08:00
android:value="v2ray-plugin"/>
2020-02-05 12:41:52 +08:00
<meta-data android:name="com.github.shadowsocks.plugin.id.aliases"
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-08-23 22:54:44 +08:00
<activity android:name=".ConfigActivity"
2024-02-18 18:00:29 +08:00
android:theme="@style/Theme.Shadowsocks.Immersive"
android:exported="true">
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"
2020-02-05 12:41:52 +08:00
android:path="/v2ray-plugin"/>
2019-01-11 09:44:36 +08:00
</intent-filter>
</activity>
</application>
</manifest>