I'm new to rajawali. I have and 570 frames animation from Blender and exported into obj and mtl files (570 each). I tried to write an android rajawali app to display the animation by the LoaderOBj object. I wrote a loop to display and hide each obj one by one. I found memory leaking issues.
After troubleshooting with heap dump and allocation tracking, I found the parse() method of LoaderObj creates lots of FinalizerReference instances. There is no reset() or equivalent method under LoaderObj. How can I solve this memory leaking or I'm wrong to use a loop to display the 570 frames of obj/mtl files?