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"
|
|
|
|
package="sushi.hardcore.droidfs">
|
|
|
|
|
2020-07-26 21:16:06 +02:00
|
|
|
<permission
|
|
|
|
android:name="${applicationId}.WRITE_TEMPORARY_STORAGE"
|
|
|
|
android:protectionLevel="signature"/>
|
|
|
|
|
2020-07-17 16:35:39 +02:00
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
<uses-permission android:name="android.permission.USE_FINGERPRINT" />
|
|
|
|
<uses-permission android:name="android.permission.USE_BIOMETRIC" />
|
|
|
|
|
|
|
|
<application
|
|
|
|
android:name=".ColoredApplication"
|
2020-07-19 19:42:59 +02:00
|
|
|
android:allowBackup="false"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
2020-07-17 16:35:39 +02:00
|
|
|
android:label="@string/app_name"
|
|
|
|
android:supportsRtl="true"
|
2020-07-26 21:16:06 +02:00
|
|
|
android:theme="@style/AppTheme"
|
|
|
|
android:requestLegacyExternalStorage="true">
|
2020-07-17 16:35:39 +02:00
|
|
|
<activity
|
|
|
|
android:name=".SettingsActivity"
|
|
|
|
android:label="@string/title_activity_settings"
|
|
|
|
android:parentActivityName=".MainActivity"/>
|
|
|
|
<activity android:name=".explorers.ExplorerActivity" />
|
|
|
|
<activity android:name=".explorers.ExplorerActivityPick" />
|
|
|
|
<activity android:name=".explorers.ExplorerActivityDrop" />
|
|
|
|
<activity
|
|
|
|
android:name=".OpenActivity"
|
|
|
|
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" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<data android:mimeType="*/*" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".CreateActivity"
|
|
|
|
android:screenOrientation="nosensor" />
|
|
|
|
<activity
|
|
|
|
android:name=".ChangePasswordActivity"
|
|
|
|
android:screenOrientation="nosensor"
|
|
|
|
android:windowSoftInputMode="adjustPan" />
|
|
|
|
<activity
|
|
|
|
android:name=".MainActivity"
|
|
|
|
android:screenOrientation="nosensor">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<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" />
|
|
|
|
|
|
|
|
<provider
|
2020-07-26 21:16:06 +02:00
|
|
|
android:name=".provider.RestrictedFileProvider"
|
|
|
|
android:authorities="${applicationId}.temporary_provider"
|
2020-07-17 16:35:39 +02:00
|
|
|
android:exported="true"
|
2020-07-26 21:16:06 +02:00
|
|
|
android:writePermission="${applicationId}.WRITE_TEMPORARY_STORAGE"/>
|
2020-07-17 16:35:39 +02:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|