[android] Log and handle Android low memory events

Signed-off-by: cyber-toad <the.cyber.toad@proton.me>
This commit is contained in:
cyber-toad 2023-04-02 00:27:33 +02:00 committed by Alexander Borsuk
parent bad9da1b28
commit 63acb874f4
3 changed files with 18 additions and 0 deletions

View file

@ -1835,4 +1835,11 @@ Java_app_organicmaps_Framework_nativeHasPlacePageInfo(JNIEnv *, jclass)
{
return static_cast<jboolean>(frm()->HasPlacePageInfo());
}
JNIEXPORT void JNICALL
Java_app_organicmaps_Framework_nativeMemoryWarning(JNIEnv *, jclass)
{
return frm()->MemoryWarning();
}
} // extern "C"

View file

@ -409,6 +409,8 @@ public class Framework
*/
public static native boolean nativeHasPlacePageInfo();
public static native void nativeMemoryWarning();
public enum LocalAdsEventType
{
LOCAL_ADS_EVENT_SHOW_POINT,

View file

@ -1857,4 +1857,13 @@ public class MwmActivity extends BaseMwmFragmentActivity
RoutingOptions.addOption(roadType);
rebuildLastRouteInternal();
}
@Override
public void onTrimMemory(int level)
{
super.onTrimMemory(level);
Logger.d(TAG, "trim memory, level = " + level);
if (level >= TRIM_MEMORY_RUNNING_LOW)
Framework.nativeMemoryWarning();
}
}