Skip to content

Commit

Permalink
Closes bumptech#2650, set default value for MemorySizeCalculator#isLo…
Browse files Browse the repository at this point in the history
…wMemoryDevice to true
  • Loading branch information
[email protected] committed Dec 4, 2017
1 parent ce90ed4 commit 4aa078c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ private static boolean isLowMemoryDevice(ActivityManager activityManager) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
return activityManager.isLowRamDevice();
} else {
return false;
return true;
}
}

Expand Down

0 comments on commit 4aa078c

Please sign in to comment.