-
-
Save relwen/3dc7bd84117db984af16af8a0206e894 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
try { | |
Field field = CursorWindow.class.getDeclaredField("sCursorWindowSize"); | |
field.setAccessible(true); | |
field.set(null, 100 * 1024 * 1024); //the 100MB is the new size | |
} catch (Exception e) { | |
e.printStackTrace(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment