There appears to be an issue with the alert starting from Corona build 2015.2599.
If I have the activity indicator open, and I create a new alert. The alert pops up behind the activity indicator. Then I cannot press the buttons on my alert, which in my case, are necessary for me to close the activity indicator.
Could you please fix this as soon as possible? It’s affecting our iOS users who need to go through this process to get some of our content.
Sample code:
local label = display.newText( "Activity indicator will disappear upon alert close", 0, 0, system.systemFont, 16 ) label.x = display.contentCenterX label.y = display.contentCenterY label:setFillColor( 1, 0, 0 ) native.setActivityIndicator( true ); local alert = native.showAlert("Hi","This is a Test", {"OK"}, function (e) native.setActivityIndicator(false); end);