Android: Resolves #3547: Make Joplin resizeable (#4624)

pull/4673/head
Roman Musin 2021-03-14 15:18:50 +00:00 committed by GitHub
parent fd390dff6b
commit 74cd19f942
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -25,6 +25,9 @@
android:allowBackup: used to enable Android Backup which some users need: android:allowBackup: used to enable Android Backup which some users need:
https://github.com/laurent22/joplin/issues/4020 https://github.com/laurent22/joplin/issues/4020
android:resizeableActivity: allows user to resize Joplin window
https://github.com/laurent22/joplin/issues/3547
--> -->
<application <application
android:name=".MainApplication" android:name=".MainApplication"
@ -34,6 +37,7 @@
android:allowBackup="true" android:allowBackup="true"
android:networkSecurityConfig="@xml/network_security_config" android:networkSecurityConfig="@xml/network_security_config"
android:requestLegacyExternalStorage="true" android:requestLegacyExternalStorage="true"
android:resizeableActivity="true"
android:theme="@style/AppTheme"> android:theme="@style/AppTheme">
<!-- RN-NOTIFICATION --> <!-- RN-NOTIFICATION -->