[android] resume downloading the world map after rotation

When the device is rotated, the activity is destroyed.
The solution implemented in the commit solves this by adding 'orientation'
to the configChanges in the Android manifest
Fixes: #4496

Signed-off-by: Emile Villette <emile.villette@student.uclouvain.be>
This commit is contained in:
Emile Villette 2023-03-06 21:41:54 +01:00 committed by Viktor Govako
parent ec5eba222f
commit 7636a95942

View file

@ -624,7 +624,7 @@
<activity
android:name="app.organicmaps.DownloadResourcesLegacyActivity"
android:configChanges="screenLayout|screenSize"/>
android:configChanges="orientation|screenLayout|screenSize"/>
<activity-alias
android:name="app.organicmaps.DownloadResourcesActivity"