DroidFS/app/src/main/AndroidManifest.xml

99 lines
4.0 KiB
XML
Raw Normal View History

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"
package="sushi.hardcore.droidfs"
android:installLocation="auto">
2020-07-17 16:35:39 +02:00
<permission
android:name="${applicationId}.WRITE_TEMPORARY_STORAGE"
2020-08-05 14:06:54 +02:00
android:protectionLevel="signature" />
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" />
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
android:name=".ColoredApplication"
2020-07-19 19:42:59 +02:00
android:allowBackup="false"
android:icon="@mipmap/icon_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"
2020-08-05 14:06:54 +02:00
android:theme="@style/AppTheme">
2020-10-22 22:14:22 +02:00
<activity
android:name=".CameraActivity"
android:screenOrientation="nosensor" />
2020-07-17 16:35:39 +02:00
<activity
android:name=".SettingsActivity"
android:label="@string/title_activity_settings"
2020-08-05 14:06:54 +02:00
android:parentActivityName=".MainActivity" />
2020-07-17 16:35:39 +02:00
<activity android:name=".explorers.ExplorerActivity" />
<activity android:name=".explorers.ExplorerActivityPick" />
<activity android:name=".explorers.ExplorerActivityDrop" />
<activity
android:name=".OpenActivity"
android:parentActivityName=".MainActivity"
2020-07-17 16:35:39 +02:00
android:screenOrientation="nosensor"
android:windowSoftInputMode="adjustPan">
<intent-filter android:label="@string/share_menu_label">
<action android:name="android.intent.action.SEND" />
<action android:name="android.intent.action.SEND_MULTIPLE" />
2020-08-05 14:06:54 +02:00
2020-07-17 16:35:39 +02:00
<category android:name="android.intent.category.DEFAULT" />
2020-08-05 14:06:54 +02:00
2020-07-17 16:35:39 +02:00
<data android:mimeType="*/*" />
</intent-filter>
</activity>
<activity
android:name=".CreateActivity"
android:parentActivityName=".MainActivity"
2020-07-17 16:35:39 +02:00
android:screenOrientation="nosensor" />
<activity
android:name=".ChangePasswordActivity"
android:parentActivityName=".MainActivity"
2020-07-17 16:35:39 +02:00
android:screenOrientation="nosensor"
android:windowSoftInputMode="adjustPan" />
<activity
android:name=".MainActivity"
android:screenOrientation="nosensor">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
2020-08-05 14:06:54 +02:00
2020-07-17 16:35:39 +02:00
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
2020-08-05 14:06:54 +02:00
<activity
android:name=".file_viewers.ImageViewer"
android:configChanges="screenSize|orientation" /> <!-- don't reload content on configuration change -->
<activity
android:name=".file_viewers.VideoPlayer"
android:configChanges="screenSize|orientation" />
<activity
android:name=".file_viewers.AudioPlayer"
android:configChanges="screenSize|orientation" />
<activity
android:name=".file_viewers.TextEditor"
android:configChanges="screenSize|orientation" />
2020-07-17 16:35:39 +02:00
2020-12-29 17:05:02 +01:00
<service android:name=".FileOperationService" android:exported="false"/>
2020-07-17 16:35:39 +02:00
<provider
android:name=".provider.RestrictedFileProvider"
android:authorities="${applicationId}.temporary_provider"
2020-07-17 16:35:39 +02:00
android:exported="true"
2020-08-05 14:06:54 +02:00
android:writePermission="${applicationId}.WRITE_TEMPORARY_STORAGE" />
2020-07-17 16:35:39 +02:00
</application>
</manifest>