[Solved] Android App get Stopped When Changing the orientation


You are getting an OutOfMemory exception when your activity gets recreated after orientation change.

I could guess in your FrameActivity you are leaking bitmaps on every activity creation not allowing the GC to free up enough memory.

2

solved Android App get Stopped When Changing the orientation