mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-01 22:56:33 +02:00
Added large memory class to debug info
This commit is contained in:
@@ -1425,8 +1425,8 @@ public class Log {
|
||||
ActivityManager am = (ActivityManager) context.getSystemService(Context.ACTIVITY_SERVICE);
|
||||
ActivityManager.MemoryInfo mi = new ActivityManager.MemoryInfo();
|
||||
am.getMemoryInfo(mi);
|
||||
sb.append(String.format("Memory class: %d MB/%s\r\n",
|
||||
am.getMemoryClass(), Helper.humanReadableByteCount(mi.totalMem)));
|
||||
sb.append(String.format("Memory class: %d/%d MB/%s\r\n",
|
||||
am.getMemoryClass(), am.getLargeMemoryClass(), Helper.humanReadableByteCount(mi.totalMem)));
|
||||
|
||||
sb.append(String.format("Storage space: %s/%s App: %s\r\n",
|
||||
Helper.humanReadableByteCount(Helper.getAvailableStorageSpace()),
|
||||
|
||||
Reference in New Issue
Block a user