2020-01-24 16:23:31 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2022-12-08 13:29:02 +01:00
|
|
|
xmlns:tools="http://schemas.android.com/tools">
|
2020-02-28 19:10:00 +01:00
|
|
|
<!-- Permissions -->
|
2022-12-29 09:45:46 +01:00
|
|
|
<permission android:name="android.permission.MEDIA_CONTENT_CONTROL" />
|
2020-01-24 16:23:31 +01:00
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
2022-12-29 09:45:46 +01:00
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
2020-01-24 16:23:31 +01:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
2020-02-28 19:10:00 +01:00
|
|
|
<uses-permission android:name="android.permission.READ_CLIPBOARD" />
|
2021-04-18 10:37:16 +02:00
|
|
|
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
|
2021-03-09 07:36:59 +01:00
|
|
|
<uses-permission android:name="android.permission.VIBRATE" />
|
2021-03-18 18:42:53 +01:00
|
|
|
<uses-permission android:name="android.permission.DOWNLOAD_WITHOUT_NOTIFICATION" />
|
2021-04-24 23:26:22 +02:00
|
|
|
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
|
2022-12-29 09:45:46 +01:00
|
|
|
<uses-permission android:name="android.permission.POST_NOTIFICATIONS"/>
|
2020-01-24 16:23:31 +01:00
|
|
|
|
|
|
|
<application
|
2021-01-18 11:07:12 +01:00
|
|
|
android:allowBackup="true"
|
|
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
|
2022-12-29 09:45:46 +01:00
|
|
|
android:extractNativeLibs="true"
|
2022-04-25 23:20:57 +02:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
2022-12-29 09:45:46 +01:00
|
|
|
tools:remove="android:appComponentFactory"
|
|
|
|
tools:targetApi="p"
|
2021-01-18 11:07:12 +01:00
|
|
|
android:label="@string/app_name"
|
2022-03-29 21:55:20 +02:00
|
|
|
android:largeHeap="false"
|
2021-01-18 11:07:12 +01:00
|
|
|
android:networkSecurityConfig="@xml/gx_network_security_config"
|
2021-06-22 07:48:26 +02:00
|
|
|
android:requestLegacyExternalStorage="true"
|
2021-01-18 11:07:12 +01:00
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
|
android:supportsRtl="true"
|
|
|
|
android:theme="@style/AppTheme"
|
2022-12-29 09:45:46 +01:00
|
|
|
android:usesCleartextTraffic="true">
|
2022-04-02 01:13:29 +02:00
|
|
|
|
2022-03-29 21:55:20 +02:00
|
|
|
<activity
|
|
|
|
android:launchMode="singleTask"
|
|
|
|
android:name="com.hiddenservices.onionservices.appManager.advertManager.advertController"
|
|
|
|
android:exported="true" />
|
|
|
|
|
2021-07-07 20:42:42 +02:00
|
|
|
<activity
|
2022-03-29 21:55:20 +02:00
|
|
|
android:name="com.hiddenservices.onionservices.appManager.bookmarkManager.bookmarkSettings.bookmarkSettingController"
|
2021-07-07 20:42:42 +02:00
|
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode"
|
|
|
|
android:windowSoftInputMode="adjustPan" />
|
2021-06-22 07:48:26 +02:00
|
|
|
|
2020-01-24 16:23:31 +01:00
|
|
|
<activity
|
2022-03-29 21:55:20 +02:00
|
|
|
android:name="com.hiddenservices.onionservices.appManager.orbotManager.orbotController"
|
2021-03-09 07:36:59 +01:00
|
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode" />
|
2022-04-02 01:13:29 +02:00
|
|
|
|
2021-01-18 11:07:12 +01:00
|
|
|
<activity
|
2022-04-23 06:04:52 +02:00
|
|
|
android:name="com.hiddenservices.onionservices.appManager.settingManager.proxyStatusManager.proxyStatusController"
|
2021-03-09 07:36:59 +01:00
|
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode" />
|
2022-04-02 01:13:29 +02:00
|
|
|
|
2020-02-28 19:10:00 +01:00
|
|
|
<activity
|
2022-03-29 21:55:20 +02:00
|
|
|
android:name="com.hiddenservices.onionservices.appManager.settingManager.settingHomeManager.settingHomeController"
|
2021-03-09 07:36:59 +01:00
|
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode"
|
2021-06-29 08:42:33 +02:00
|
|
|
android:exported="true"
|
2022-03-29 21:55:20 +02:00
|
|
|
android:label="@string/SETTING_HEADER"
|
2022-12-29 09:45:46 +01:00
|
|
|
android:launchMode="singleTask"
|
2021-03-09 07:36:59 +01:00
|
|
|
android:windowSoftInputMode="adjustPan" />
|
2022-04-02 01:13:29 +02:00
|
|
|
|
2020-02-28 19:10:00 +01:00
|
|
|
<activity
|
2022-03-29 21:55:20 +02:00
|
|
|
android:name="com.hiddenservices.onionservices.appManager.historyManager.historyController"
|
2021-03-09 07:36:59 +01:00
|
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode"
|
|
|
|
android:windowSoftInputMode="adjustPan" />
|
2022-04-02 01:13:29 +02:00
|
|
|
|
2020-01-24 16:23:31 +01:00
|
|
|
<activity
|
2022-03-29 21:55:20 +02:00
|
|
|
android:name="com.hiddenservices.onionservices.appManager.bookmarkManager.bookmarkHome.bookmarkController"
|
2021-03-09 07:36:59 +01:00
|
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode"
|
|
|
|
android:windowSoftInputMode="adjustPan" />
|
2022-04-02 01:13:29 +02:00
|
|
|
|
2020-09-11 12:54:25 +02:00
|
|
|
<activity
|
2022-03-29 21:55:20 +02:00
|
|
|
android:name="com.hiddenservices.onionservices.appManager.languageManager.languageController"
|
2020-11-11 13:11:13 +01:00
|
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode"
|
2020-10-23 22:36:58 +02:00
|
|
|
android:label="@string/SETTING_HEADER"
|
2020-12-14 10:00:38 +01:00
|
|
|
android:windowSoftInputMode="adjustPan" />
|
2022-04-02 01:13:29 +02:00
|
|
|
|
2020-12-11 08:05:08 +01:00
|
|
|
<activity
|
2022-03-29 21:55:20 +02:00
|
|
|
android:name="com.hiddenservices.onionservices.appManager.helpManager.helpController"
|
2022-05-22 11:12:11 +02:00
|
|
|
android:configChanges="keyboard|keyboardHidden|screenSize|uiMode"
|
2020-12-11 08:05:08 +01:00
|
|
|
android:label="@string/SETTING_HEADER"
|
2020-12-14 10:00:38 +01:00
|
|
|
android:windowSoftInputMode="adjustPan" />
|
2022-04-02 01:13:29 +02:00
|
|
|
|
2020-10-23 22:36:58 +02:00
|
|
|
<activity
|
2022-03-29 21:55:20 +02:00
|
|
|
android:name="com.hiddenservices.onionservices.appManager.settingManager.accessibilityManager.settingAccessibilityController"
|
2020-11-11 13:11:13 +01:00
|
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode"
|
|
|
|
android:label="@string/SETTING_HEADER"
|
2020-12-14 10:00:38 +01:00
|
|
|
android:windowSoftInputMode="adjustPan" />
|
2022-04-02 01:13:29 +02:00
|
|
|
|
2020-11-11 13:11:13 +01:00
|
|
|
<activity
|
2022-03-29 21:55:20 +02:00
|
|
|
android:name="com.hiddenservices.onionservices.appManager.settingManager.clearManager.settingClearController"
|
2020-11-11 13:11:13 +01:00
|
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode"
|
2020-10-23 22:36:58 +02:00
|
|
|
android:label="@string/SETTING_HEADER"
|
2020-12-14 10:00:38 +01:00
|
|
|
android:windowSoftInputMode="adjustPan" />
|
2022-04-02 01:13:29 +02:00
|
|
|
|
2020-02-28 19:10:00 +01:00
|
|
|
<activity
|
2022-03-29 21:55:20 +02:00
|
|
|
android:name="com.hiddenservices.onionservices.appManager.bridgeManager.bridgeController"
|
2020-11-11 13:11:13 +01:00
|
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode"
|
2020-12-14 10:00:38 +01:00
|
|
|
android:windowSoftInputMode="adjustPan" />
|
2022-04-02 01:13:29 +02:00
|
|
|
|
2020-10-22 10:36:44 +02:00
|
|
|
<activity
|
2022-03-29 21:55:20 +02:00
|
|
|
android:name="com.hiddenservices.onionservices.appManager.settingManager.notificationManager.settingNotificationController"
|
2020-11-11 13:11:13 +01:00
|
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode"
|
2021-06-22 07:48:26 +02:00
|
|
|
android:launchMode="singleTop"
|
2020-12-14 10:00:38 +01:00
|
|
|
android:windowSoftInputMode="adjustPan" />
|
2022-04-02 01:13:29 +02:00
|
|
|
|
2020-11-11 13:11:13 +01:00
|
|
|
<activity
|
2022-03-29 21:55:20 +02:00
|
|
|
android:name="com.hiddenservices.onionservices.appManager.settingManager.privacyManager.settingPrivacyController"
|
2020-11-11 13:11:13 +01:00
|
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode"
|
2020-12-14 10:00:38 +01:00
|
|
|
android:windowSoftInputMode="adjustPan" />
|
2022-04-02 01:13:29 +02:00
|
|
|
|
2020-11-27 12:40:46 +01:00
|
|
|
<activity
|
2022-03-29 21:55:20 +02:00
|
|
|
android:name="com.hiddenservices.onionservices.appManager.settingManager.logManager.settingLogController"
|
2020-11-27 12:40:46 +01:00
|
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode"
|
2020-12-14 10:00:38 +01:00
|
|
|
android:windowSoftInputMode="adjustPan" />
|
2022-04-02 01:13:29 +02:00
|
|
|
|
2022-05-01 12:11:28 +02:00
|
|
|
<activity
|
|
|
|
android:name="com.hiddenservices.onionservices.appManager.settingManager.advertSetttings.advertSettingController"
|
|
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode"
|
|
|
|
android:windowSoftInputMode="adjustPan" />
|
|
|
|
|
2020-11-11 13:11:13 +01:00
|
|
|
<activity
|
2022-03-29 21:55:20 +02:00
|
|
|
android:name="com.hiddenservices.onionservices.appManager.settingManager.advanceManager.settingAdvanceController"
|
2020-11-11 13:11:13 +01:00
|
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode"
|
2020-12-14 10:00:38 +01:00
|
|
|
android:windowSoftInputMode="adjustPan" />
|
2022-04-02 01:13:29 +02:00
|
|
|
|
2020-11-11 13:11:13 +01:00
|
|
|
<activity
|
2022-03-29 21:55:20 +02:00
|
|
|
android:name="com.hiddenservices.onionservices.appManager.orbotLogManager.orbotLogController"
|
2021-05-15 20:56:17 +02:00
|
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode"
|
2020-12-14 10:00:38 +01:00
|
|
|
android:windowSoftInputMode="adjustPan" />
|
2023-01-01 12:53:56 +01:00
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name="com.hiddenservices.onionservices.appManager.orbotRequestManager"
|
|
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode"
|
|
|
|
android:windowSoftInputMode="adjustPan" />
|
2022-04-02 01:13:29 +02:00
|
|
|
|
2020-11-11 13:11:13 +01:00
|
|
|
<activity
|
2022-03-29 21:55:20 +02:00
|
|
|
android:name="com.hiddenservices.onionservices.appManager.settingManager.generalManager.settingGeneralController"
|
2020-11-11 13:11:13 +01:00
|
|
|
android:configChanges="uiMode"
|
2020-12-14 10:00:38 +01:00
|
|
|
android:windowSoftInputMode="adjustPan" />
|
2022-04-02 01:13:29 +02:00
|
|
|
|
2021-03-09 07:36:59 +01:00
|
|
|
<activity
|
2022-03-29 21:55:20 +02:00
|
|
|
android:name="com.hiddenservices.onionservices.appManager.settingManager.searchEngineManager.settingSearchController"
|
2020-11-11 13:11:13 +01:00
|
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode"
|
2020-12-14 10:00:38 +01:00
|
|
|
android:windowSoftInputMode="adjustPan" />
|
2022-04-02 01:13:29 +02:00
|
|
|
|
2020-01-24 16:23:31 +01:00
|
|
|
<activity
|
2022-03-29 21:55:20 +02:00
|
|
|
android:name="com.hiddenservices.onionservices.appManager.settingManager.trackingManager.settingTrackingController"
|
2021-02-03 11:54:19 +01:00
|
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode"
|
|
|
|
android:windowSoftInputMode="adjustPan" />
|
2022-04-02 01:13:29 +02:00
|
|
|
|
2021-02-03 11:54:19 +01:00
|
|
|
<activity
|
2022-03-29 21:55:20 +02:00
|
|
|
android:name="com.hiddenservices.onionservices.appManager.homeManager.homeController.homeController"
|
2021-03-09 07:36:59 +01:00
|
|
|
android:configChanges="keyboard|keyboardHidden|mcc|mnc|orientation|screenSize|locale|layoutDirection|smallestScreenSize|screenLayout"
|
2022-03-29 21:55:20 +02:00
|
|
|
android:exported="true"
|
2022-12-29 09:45:46 +01:00
|
|
|
android:launchMode="singleTask"
|
2021-08-01 11:47:13 +02:00
|
|
|
android:screenOrientation="fullSensor"
|
2021-03-09 07:36:59 +01:00
|
|
|
android:windowSoftInputMode="adjustPan">
|
2021-06-22 07:48:26 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="android.app.shortcuts"
|
2021-05-07 16:27:42 +02:00
|
|
|
android:resource="@xml/shortcuts" />
|
2021-06-22 07:48:26 +02:00
|
|
|
|
2020-01-24 16:23:31 +01:00
|
|
|
<intent-filter>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
2020-02-28 19:10:00 +01:00
|
|
|
|
2020-01-24 16:23:31 +01:00
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
</intent-filter>
|
2021-01-18 11:07:12 +01:00
|
|
|
</activity>
|
2022-04-02 01:13:29 +02:00
|
|
|
|
2021-03-09 07:36:59 +01:00
|
|
|
<activity
|
2022-03-29 21:55:20 +02:00
|
|
|
android:name="com.hiddenservices.onionservices.appManager.homeManager.FakeLauncherActivity"
|
|
|
|
android:enabled="false"
|
|
|
|
android:exported="true">
|
2021-03-09 07:36:59 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
2020-01-24 16:23:31 +01:00
|
|
|
|
2021-03-09 07:36:59 +01:00
|
|
|
<category android:name="android.intent.category.HOME" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2022-04-02 01:13:29 +02:00
|
|
|
|
2021-06-22 07:48:26 +02:00
|
|
|
<activity
|
2022-03-29 21:55:20 +02:00
|
|
|
android:name="com.hiddenservices.onionservices.appManager.externalCommandManager.externalShortcutController"
|
2021-06-22 07:48:26 +02:00
|
|
|
android:launchMode="singleTop" />
|
|
|
|
<activity
|
2022-03-29 21:55:20 +02:00
|
|
|
android:name="com.hiddenservices.onionservices.appManager.externalCommandManager.externalURLNavigationContoller"
|
|
|
|
android:exported="true"
|
|
|
|
android:launchMode="singleTop">
|
2020-02-28 19:10:00 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
2021-03-09 07:36:59 +01:00
|
|
|
|
2020-02-28 19:10:00 +01:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
2021-03-09 07:36:59 +01:00
|
|
|
|
2020-02-28 19:10:00 +01:00
|
|
|
<data android:scheme="http" />
|
|
|
|
<data android:scheme="https" />
|
|
|
|
</intent-filter>
|
2021-01-18 11:07:12 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.ASSIST" />
|
2021-03-09 07:36:59 +01:00
|
|
|
|
2021-01-18 11:07:12 +01:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2020-02-28 19:10:00 +01:00
|
|
|
</intent-filter>
|
2022-04-02 01:13:29 +02:00
|
|
|
</activity>
|
|
|
|
|
|
|
|
<!-- Meta and Library & Settings -->
|
|
|
|
|
2020-01-24 16:23:31 +01:00
|
|
|
<uses-library
|
2021-03-09 07:36:59 +01:00
|
|
|
android:name="org.apache.http.legacy"
|
|
|
|
android:required="false" />
|
2020-01-24 16:23:31 +01:00
|
|
|
|
|
|
|
<meta-data
|
2021-03-09 07:36:59 +01:00
|
|
|
android:name="io.fabric.ApiKey"
|
2022-04-02 01:13:29 +02:00
|
|
|
android:value="be76c64dae2519d4ab8daaed88298da14c7c294f" />
|
|
|
|
|
2021-06-22 07:48:26 +02:00
|
|
|
<meta-data
|
2022-04-02 01:13:29 +02:00
|
|
|
android:name="applovin.sdk.key"
|
|
|
|
android:value="hGlhanpemGqPOKKAgaXvhyxwZaG9uD68csy1OadWTNhEgKvBWR7-7KSpyFr6nfZ4KMOuBBV5J49s2LLSg-SVxg" />
|
|
|
|
|
|
|
|
<uses-library
|
|
|
|
android:name="org.apache.http.legacy"
|
|
|
|
android:required="false" />
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Services & Settings -->
|
|
|
|
|
2020-01-24 16:23:31 +01:00
|
|
|
<service
|
2022-03-29 21:55:20 +02:00
|
|
|
android:name="com.hiddenservices.onionservices.pluginManager.downloadPluginManager.downloadService"
|
2021-03-09 07:36:59 +01:00
|
|
|
android:enabled="true"
|
2022-04-02 01:13:29 +02:00
|
|
|
android:exported="false"
|
2021-03-09 07:36:59 +01:00
|
|
|
android:stopWithTask="true" />
|
2022-04-02 01:13:29 +02:00
|
|
|
|
2021-02-03 11:54:19 +01:00
|
|
|
<service
|
2022-12-29 09:45:46 +01:00
|
|
|
android:name="com.hiddenservices.onionservices.appManager.activityStateManager"/>
|
2021-02-03 11:54:19 +01:00
|
|
|
|
2022-04-02 01:13:29 +02:00
|
|
|
<service
|
2022-04-14 08:50:58 +02:00
|
|
|
android:name="org.torproject.android.service.OrbotService"
|
2022-04-02 01:13:29 +02:00
|
|
|
android:enabled="true"
|
|
|
|
android:exported="false"
|
|
|
|
android:stopWithTask="true" />
|
|
|
|
|
|
|
|
<!-- Reciever & Settings -->
|
|
|
|
|
2021-03-09 07:36:59 +01:00
|
|
|
<receiver
|
2022-03-29 21:55:20 +02:00
|
|
|
android:name="com.hiddenservices.onionservices.pluginManager.notificationPluginManager.localEngagementManager"
|
|
|
|
android:exported="true"
|
|
|
|
android:permission="TODO"
|
|
|
|
tools:ignore="ExportedReceiver" />
|
2022-04-02 01:13:29 +02:00
|
|
|
|
2022-03-29 21:55:20 +02:00
|
|
|
<receiver
|
|
|
|
android:name="com.hiddenservices.onionservices.pluginManager.pluginReciever.downloadNotificationReciever"
|
2022-04-02 01:13:29 +02:00
|
|
|
android:exported="false">
|
2021-03-06 19:55:24 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="Download_Cancelled" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2022-04-02 01:13:29 +02:00
|
|
|
|
2022-12-29 09:45:46 +01:00
|
|
|
<receiver
|
|
|
|
android:name="com.hiddenservices.onionservices.pluginManager.pluginReciever.mediaNotificationReciever"
|
|
|
|
android:exported="false">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="media_toggle" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
|
|
|
|
<receiver
|
|
|
|
android:name="com.hiddenservices.onionservices.pluginManager.pluginReciever.defaultNotificationReciever"
|
|
|
|
android:exported="false">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="default_toggle" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
|
2021-06-29 08:42:33 +02:00
|
|
|
<receiver
|
2022-04-14 08:50:58 +02:00
|
|
|
android:name="org.torproject.android.service.StartTorReceiver"
|
2021-06-29 08:42:33 +02:00
|
|
|
android:exported="true"
|
|
|
|
tools:ignore="ExportedReceiver">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="org.torproject.android.intent.action.START" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2021-08-01 11:47:13 +02:00
|
|
|
|
2022-04-02 01:13:29 +02:00
|
|
|
<receiver
|
|
|
|
android:name="com.widget.onionservices.widgetManager.widgetController"
|
|
|
|
android:exported="true">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
|
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="android.appwidget.provider"
|
|
|
|
android:resource="@xml/search_widget_manager_info" />
|
|
|
|
</receiver>
|
|
|
|
|
|
|
|
<!-- Providers & Settings -->
|
2022-12-29 09:45:46 +01:00
|
|
|
<service
|
|
|
|
android:name=".MediaSessionService"
|
|
|
|
android:enabled="true"
|
|
|
|
android:exported="true">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MEDIA_BUTTON"/>
|
|
|
|
</intent-filter>
|
|
|
|
</service>
|
|
|
|
<receiver android:name="androidx.media.session.MediaButtonReceiver"
|
|
|
|
android:exported="true">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MEDIA_BUTTON"/>
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2022-04-02 01:13:29 +02:00
|
|
|
|
2021-05-10 17:37:53 +02:00
|
|
|
<provider
|
|
|
|
android:name="androidx.core.content.FileProvider"
|
2022-03-29 21:55:20 +02:00
|
|
|
android:authorities="com.hiddenservices.onionservices.provider"
|
2021-05-10 17:37:53 +02:00
|
|
|
android:exported="false"
|
2022-04-02 01:13:29 +02:00
|
|
|
android:grantUriPermissions="true"
|
|
|
|
tools:ignore="ExportedContentProvider">
|
2021-05-10 17:37:53 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
|
|
android:resource="@xml/provider_paths" />
|
|
|
|
</provider>
|
2022-04-02 01:13:29 +02:00
|
|
|
|
2021-05-10 17:37:53 +02:00
|
|
|
<provider
|
2022-03-29 21:55:20 +02:00
|
|
|
android:name="com.hiddenservices.onionservices.libs.providers.HSContentProvider"
|
2022-02-12 11:16:57 +01:00
|
|
|
android:authorities="org.torproject.android.ui.hiddenservices.providers.genesishiddenservices"
|
2022-04-02 01:13:29 +02:00
|
|
|
android:exported="false" />
|
|
|
|
|
2021-06-08 10:40:27 +02:00
|
|
|
<provider
|
2022-03-29 21:55:20 +02:00
|
|
|
android:name="com.hiddenservices.onionservices.libs.providers.OnionServiceContentProvider"
|
2022-02-12 11:16:57 +01:00
|
|
|
android:authorities="org.torproject.android.ui.v3onionservice.genesishiddenservices"
|
2022-04-02 01:13:29 +02:00
|
|
|
android:exported="false" />
|
|
|
|
|
2021-06-08 10:40:27 +02:00
|
|
|
<provider
|
2022-03-29 21:55:20 +02:00
|
|
|
android:name="com.hiddenservices.onionservices.libs.providers.ClientAuthContentProviderGenesis"
|
2022-02-12 11:16:57 +01:00
|
|
|
android:authorities="org.torproject.android.ui.v3onionservice.genesishiddenservices.clientauth"
|
2022-04-02 01:13:29 +02:00
|
|
|
android:exported="false" />
|
|
|
|
|
2021-06-08 10:40:27 +02:00
|
|
|
<provider
|
2022-03-29 21:55:20 +02:00
|
|
|
android:name="com.hiddenservices.onionservices.libs.providers.CookieContentProvider"
|
2022-02-12 11:16:57 +01:00
|
|
|
android:authorities="org.torproject.android.ui.hiddenservices.providers.genesishiddenservices.cookie"
|
2022-04-02 01:13:29 +02:00
|
|
|
android:exported="false" />
|
|
|
|
|
2021-04-24 23:26:22 +02:00
|
|
|
<provider
|
|
|
|
android:name="androidx.core.content.FileProvider"
|
|
|
|
android:authorities="${applicationId}.fileprovider"
|
2022-04-02 01:13:29 +02:00
|
|
|
android:exported="false"
|
2021-04-24 23:26:22 +02:00
|
|
|
android:grantUriPermissions="true">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
|
|
android:resource="@xml/file_path" />
|
|
|
|
</provider>
|
2022-03-29 21:55:20 +02:00
|
|
|
|
2020-01-24 16:23:31 +01:00
|
|
|
</application>
|
|
|
|
|
2019-03-05 07:33:58 +01:00
|
|
|
</manifest>
|