my code stop working after i install 2524 (skiped 2523). i thought i introduced some bug but coudn’t find one. so i tried in the latest free version 2511 and works fine.
to eliminate others possibilities of the error. i tried the simplest version of creating a map like in the corona sdk example:
local myMap = native.newMapView( 0, 0, 320, 480 ) if myMap then myMap.x = display.contentCenterX myMap.y = display.contentCenterY local locationTable = myMap:getUserLocation() local locationtxt = display.newText( "My location is: ", 0, 0, native.systemFont, 16 ) if ( locationTable.errorCode ) then locationtxt.text = locationtxt.text .. locationTable.errorMessage else locationtxt.text = locationtxt.text .. locationTable.latitude .. ", " ..locationTable.longitude end end
in the free version 2511 works fine, version 2522 works fine, 2525 and 2524 don’t work. (didnt try in version 2523)
hope this helps to track the bug (if any) and solve the problem.