Merge pull request #2330 from kiwix/feature/macgills/2229-resizable-kiwix

#2229 Make Kiwix on Android resizable
This commit is contained in:
Seán Mac Gillicuddy 2020-09-10 12:02:30 +01:00 committed by GitHub
commit d7d461d69e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,16 +19,25 @@
android:fullBackupContent="@xml/backup_rules"
android:hardwareAccelerated="true"
android:label="@string/app_name"
android:resizeableActivity="true"
android:supportsRtl="true"
android:theme="@style/KiwixTheme"
android:usesCleartextTraffic="true"
tools:targetApi="m">
tools:targetApi="n">
<!-- Version < 3.0. DeX Mode and Screen Mirroring support -->
<meta-data
android:name="com.samsung.android.keepalive.density"
android:value="true" />
<!-- Version >= 3.0. DeX Dual Mode support -->
<meta-data
android:name="com.samsung.android.multidisplay.keep_process_alive"
android:value="true" />
<activity
android:name=".search.SearchActivity"
android:windowSoftInputMode="adjustResize" />
<activity
android:name=".error.ErrorActivity"
android:process=":error_activity" />