/
githubmirror
/
shadowsocks-android
Обзор
Документация
Войти
/
githubmirror
/
shadowsocks-android
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
core/src/main/AndroidManifest.xml
125 строк
6 KB
Mygod
Fix locale config not merged
28 авг 2024, 10:57
28 авг 2024, 10:57
93b0802
Код
Авторство
О чём код?
<manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:installLocation="internalOnly"> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> <uses-permission android:name="android.permission.CHANGE_NETWORK_STATE"/> <uses-permission android:name="android.permission.FOREGROUND_SERVICE"/> <uses-permission android:name="android.permission.FOREGROUND_SERVICE_SPECIAL_USE"/> <uses-permission android:name="android.permission.FOREGROUND_SERVICE_SYSTEM_EXEMPTED"/> <uses-permission android:name="android.permission.INTERNET"/> <uses-permission android:name="android.permission.POST_NOTIFICATIONS"/> <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/> <uses-permission android:name="android.permission.WAKE_LOCK"/> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" android:maxSdkVersion="28"/> <queries> <intent> <action android:name="com.github.shadowsocks.plugin.ACTION_NATIVE_PLUGIN" /> </intent> </queries> <application android:icon="@mipmap/ic_launcher" android:allowBackup="true" android:enableOnBackInvokedCallback="true" android:extractNativeLibs="true" android:fullBackupContent="@xml/backup_descriptor" android:fullBackupOnly="true" android:hasFragileUserData="true" android:label="@string/app_name" android:supportsRtl="true" android:networkSecurityConfig="@xml/network_security_config" android:banner="@mipmap/banner"> <meta-data android:name="android.webkit.WebView.EnableSafeBrowsing" android:value="true" /> <meta-data android:name="com.google.android.backup.api_key" android:value="AEdPqrEAAAAI_zVxZthz2HDuz9toTvkYvL0L5GA-OjeUIfBeXg"/> <service android:name="com.github.shadowsocks.bg.VpnService" android:process=":bg" android:directBootAware="true" android:label="@string/app_name" android:permission="android.permission.BIND_VPN_SERVICE" android:foregroundServiceType="systemExempted" android:exported="false" tools:ignore="ForegroundServicePermission"> <intent-filter> <action android:name="android.net.VpnService"/> </intent-filter> </service> <service android:name="com.github.shadowsocks.bg.TransproxyService" android:process=":bg" android:directBootAware="true" android:foregroundServiceType="specialUse" android:exported="false"> <property android:name="android.app.PROPERTY_SPECIAL_USE_FGS_SUBTYPE" android:value="Proxy service that handles incoming SOCKS5 and Transproxy traffic" /> </service> <service android:name="com.github.shadowsocks.bg.ProxyService" android:process=":bg" android:directBootAware="true" android:foregroundServiceType="specialUse" android:exported="false"> <property android:name="android.app.PROPERTY_SPECIAL_USE_FGS_SUBTYPE" android:value="Proxy service that handles incoming SOCKS5 traffic" /> </service> <service android:name="com.github.shadowsocks.subscription.SubscriptionService" android:exported="false"> </service> <activity android:name="com.github.shadowsocks.UrlImportActivity" android:theme="@style/Theme.Shadowsocks.Translucent" android:exported="true" android:excludeFromRecents="true"> <intent-filter> <action android:name="android.intent.action.VIEW"/> <category android:name="android.intent.category.DEFAULT"/> <category android:name="android.intent.category.BROWSABLE"/> <data android:scheme="ss"/> </intent-filter> </activity> <activity android:name="com.github.shadowsocks.VpnRequestActivity" android:theme="@style/Theme.Shadowsocks.Translucent" android:exported="false" android:excludeFromRecents="true" android:taskAffinity=""/> <receiver android:name="com.github.shadowsocks.BootReceiver" android:process=":bg" android:directBootAware="true" android:exported="true" android:enabled="false"> <intent-filter> <action android:name="android.intent.action.BOOT_COMPLETED"/> <action android:name="android.intent.action.LOCKED_BOOT_COMPLETED" /> <action android:name="android.intent.action.MY_PACKAGE_REPLACED" /> </intent-filter> </receiver> <activity android:name="com.google.android.gms.oss.licenses.OssLicensesActivity" android:theme="@style/Theme.Shadowsocks.ActionBar"/> <activity android:name="com.google.android.gms.oss.licenses.OssLicensesMenuActivity" android:theme="@style/Theme.Shadowsocks.ActionBar"/> <service android:name="com.google.firebase.components.ComponentDiscoveryService" android:directBootAware="true"/> <provider android:name="com.google.firebase.provider.FirebaseInitProvider" tools:node="remove"/> <service android:name="androidx.room.MultiInstanceInvalidationService" android:process=":bg"/> </application> </manifest>