hi,
strange problem after upgrade to lazarus 3.4 with FpCupDeluxe, last LAMW, gradle 8.11.1, ndk 21e :
when I press the back button on any form the app closes
I have solved it with this code on SpecialKeyDown
mute:= True;
if keyCode = 4 then //KEYCODE_BACK
begin
Close ;
frmMain.Show ;
end;