WriteFile issue:
//Called when application is started.
function OnStart()
{
//Create a layout with objects vertically centered.
lay = app.CreateLayout( "Linear", "VCenter,FillXY" )
app.ChooseFile( "Choose a File", "*/*", OnChoose );
//Add layout to app.
app.AddLayout( lay )
}
function OnChoose( file )
{
/*
When I add more characters than the original file
content, the file is updated successfully. However,
if the new content contains fewer characters than
the original, the replacement fails. The same issue
occurs with files inside folders for which the user
has granted access.
*/
app.WriteFile( file, "Hello" )
}
cfg.EdgeToEdge issue:
Due to Android's new UI design, the navigation and status bars overlap
the application content on many devices. As a result, many buttons, UI
elements, and other components at the top and bottom of the application
become unusable. To handle this properly, we need a way to determine the
dimensions of the device's safe areas.
20 Ağustos 2026 Perşembe tarihinde saat 15:03:40 UTC+3 itibarıyla Dave şunları yazdı: