Hi,
Below is sample code to test camera feeds.
local shape = display.newRect( 0, 0, 320, 480 )
shape.anchorX = 0
shape.anchorY = 0
shape.fill = { type=“camera” }
…
shape:removeSelf()
shape = nil
When i try to remove shape object, my App has crash.
Is there another way to remove ?