1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-24 10:27:10 +02:00

Mobile: Fixes #1767: Fixed broken search when certain notes are too large

This commit is contained in:
Laurent Cozic 2019-09-06 17:39:36 +01:00
parent 10e22654ea
commit bf5601429e

View File

@ -68,6 +68,20 @@ public class MainApplication extends Application implements ReactApplication {
@Override
public void onCreate() {
super.onCreate();
// To try to fix the error "Row too big to fit into CursorWindow"
// https://github.com/andpor/react-native-sqlite-storage/issues/364#issuecomment-526423153
// https://github.com/laurent22/joplin/issues/1767#issuecomment-515617991
try {
Field field = CursorWindow.class.getDeclaredField("sCursorWindowSize");
field.setAccessible(true);
field.set(null, 50 * 1024 * 1024); // 50 MB
} catch (Exception e) {
if (DEBUG_MODE) {
e.printStackTrace();
}
}
SoLoader.init(this, /* native exopackage */ false);
}
}