I\'m currently testing my proof of concept prototype dealing with XML schema, and built around a very memory consuming external library for tree automata (for which I\'ve got th
You can kinda force GC like this....
private static void force_gc() { Object obj = new Object(); WeakReference ref = new WeakReference(obj); obj = null; while (ref.get() != null) { Log.d(LOGTAG, "Forcing gc() ..."); System.gc(); } }
apart from that... i'm interested to see where this question goes.