mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-02-24 18:38:48 +01:00
Set largeHeap to fix OOM on start up
We are now loading all files in one go on start up to improve perforamnce, this will cause a temporary spike in RAM usage
This commit is contained in:
parent
b23f5deecd
commit
5a02643e54
1 changed files with 2 additions and 1 deletions
|
@ -12,7 +12,8 @@
|
|||
android:icon="@mipmap/ic_launcher"
|
||||
android:name="androidx.multidex.MultiDexApplication"
|
||||
android:networkSecurityConfig="@xml/network_security_config"
|
||||
android:allowBackup="false">
|
||||
android:allowBackup="false"
|
||||
android:largeHeap="true">
|
||||
<activity
|
||||
android:name=".MainActivity"
|
||||
android:launchMode="singleTop"
|
||||
|
|
Loading…
Reference in a new issue