2020-07-17 16:35:39 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-08-12 16:14:26 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2020-09-14 21:12:07 +02:00
|
|
|
android:installLocation="auto">
|
2020-07-17 16:35:39 +02:00
|
|
|
|
2023-02-01 19:08:14 +01:00
|
|
|
<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE" tools:ignore="ScopedStorage" />
|
2024-06-13 16:01:12 +02:00
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_DATA_SYNC" />
|
|
|
|
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
|
2020-07-17 16:35:39 +02:00
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
<uses-permission android:name="android.permission.USE_BIOMETRIC" />
|
2020-12-19 19:55:54 +01:00
|
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
2021-10-03 14:36:06 +02:00
|
|
|
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
2020-08-12 16:14:26 +02:00
|
|
|
|
2020-10-22 22:14:22 +02:00
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.camera.any"
|
|
|
|
android:required="false" />
|
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.fingerprint"
|
|
|
|
android:required="false" />
|
|
|
|
|
|
|
|
<uses-permission
|
|
|
|
android:name="android.permission.ACCESS_NETWORK_STATE"
|
|
|
|
tools:node="remove" /> <!--removing this permission automatically added by exoplayer-->
|
2020-07-17 16:35:39 +02:00
|
|
|
|
|
|
|
<application
|
2023-02-05 14:43:30 +01:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
2020-07-17 16:35:39 +02:00
|
|
|
android:label="@string/app_name"
|
2020-08-05 14:06:54 +02:00
|
|
|
android:requestLegacyExternalStorage="true"
|
2020-07-17 16:35:39 +02:00
|
|
|
android:supportsRtl="true"
|
2023-03-07 23:25:17 +01:00
|
|
|
android:theme="@style/BaseTheme"
|
2023-04-18 14:59:05 +02:00
|
|
|
android:name=".VolumeManagerApp"
|
|
|
|
android:fullBackupContent="false"
|
|
|
|
android:dataExtractionRules="@xml/backup_rules">
|
2022-03-05 12:51:02 +01:00
|
|
|
<activity android:name=".MainActivity" android:exported="true">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
2020-07-17 16:35:39 +02:00
|
|
|
<intent-filter android:label="@string/share_menu_label">
|
|
|
|
<action android:name="android.intent.action.SEND" />
|
|
|
|
<action android:name="android.intent.action.SEND_MULTIPLE" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<data android:mimeType="*/*" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2022-03-05 12:51:02 +01:00
|
|
|
<activity android:name=".SettingsActivity" android:label="@string/title_activity_settings"/>
|
|
|
|
<activity android:name=".add_volume.AddVolumeActivity" android:windowSoftInputMode="adjustResize"/>
|
|
|
|
<activity android:name=".ChangePasswordActivity" android:windowSoftInputMode="adjustResize"/>
|
|
|
|
<activity android:name=".explorers.ExplorerActivity"/>
|
|
|
|
<activity android:name=".explorers.ExplorerActivityPick"/>
|
|
|
|
<activity android:name=".explorers.ExplorerActivityDrop"/>
|
2023-03-13 17:02:38 +01:00
|
|
|
<activity android:name=".file_viewers.ImageViewer"/>
|
2022-03-05 12:51:02 +01:00
|
|
|
<activity android:name=".file_viewers.VideoPlayer" android:configChanges="screenSize|orientation" />
|
2022-09-23 12:09:22 +02:00
|
|
|
<activity android:name=".file_viewers.PdfViewer" android:configChanges="screenSize|orientation" android:theme="@style/AppTheme" />
|
2022-03-05 12:51:02 +01:00
|
|
|
<activity android:name=".file_viewers.AudioPlayer" android:configChanges="screenSize|orientation" />
|
|
|
|
<activity android:name=".file_viewers.TextEditor" android:configChanges="screenSize|orientation" />
|
|
|
|
<activity android:name=".CameraActivity" android:screenOrientation="nosensor" />
|
2024-01-30 18:28:05 +01:00
|
|
|
<activity android:name=".LogcatActivity"/>
|
2020-07-17 16:35:39 +02:00
|
|
|
|
2024-07-16 15:03:44 +02:00
|
|
|
<service android:name=".KeepAliveService" android:exported="false" android:foregroundServiceType="dataSync" />
|
|
|
|
<service android:name=".ClosingService" android:exported="false" android:stopWithTask="false"/>
|
2024-06-13 16:01:12 +02:00
|
|
|
<service android:name=".file_operations.FileOperationService" android:exported="false" android:foregroundServiceType="dataSync"/>
|
2020-12-29 17:05:02 +01:00
|
|
|
|
2024-07-16 15:03:44 +02:00
|
|
|
<receiver android:name=".NotificationBroadcastReceiver" android:exported="false">
|
2020-12-31 15:57:52 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="file_operation_cancel"/>
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
|
2020-07-17 16:35:39 +02:00
|
|
|
<provider
|
2023-09-06 19:27:41 +02:00
|
|
|
android:name=".content_providers.TemporaryFileProvider"
|
|
|
|
android:authorities="${applicationId}.temporary_provider"
|
|
|
|
android:exported="true"/>
|
2023-08-20 14:56:46 +02:00
|
|
|
|
|
|
|
<provider
|
2023-09-06 19:27:41 +02:00
|
|
|
android:authorities="${applicationId}.volume_provider"
|
|
|
|
android:name=".content_providers.VolumeProvider"
|
2020-07-17 16:35:39 +02:00
|
|
|
android:exported="true"
|
2023-09-06 19:27:41 +02:00
|
|
|
android:grantUriPermissions="true"
|
|
|
|
android:permission="android.permission.MANAGE_DOCUMENTS">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.content.action.DOCUMENTS_PROVIDER" />
|
|
|
|
</intent-filter>
|
|
|
|
</provider>
|
|
|
|
|
2020-07-17 16:35:39 +02:00
|
|
|
</application>
|
|
|
|
|
2020-09-14 21:12:07 +02:00
|
|
|
</manifest>
|