Page 1 of 1

IAP Key: Test version

Posted: Fri Feb 20, 2026 3:25 am
by AZJIO
Can you add a "Test version" compilation option without a debugger. For example, I want to make a directory program for myself and my colleagues at work, and I don't want to upload it to Google Play.

Re: IAP Key: Test version

Posted: Fri Feb 20, 2026 5:21 am
by Caronte3D
You can use CloseDebugOutput()

Re: IAP Key: Test version

Posted: Fri Feb 20, 2026 6:32 am
by AZJIO
Caronte3D wrote: Fri Feb 20, 2026 5:21 am You can use CloseDebugOutput()
And there won't be many lines of debugger code, as it happens in PB? In the same place, the number of rows increases by 70 times.

Re: IAP Key: Test version

Posted: Fri Feb 20, 2026 6:48 pm
by Caronte3D
AZJIO wrote: Fri Feb 20, 2026 6:32 am And there won't be many lines of debugger code, as it happens in PB? In the same place, the number of rows increases by 70 times.
I don't know.
I also add these lines when I export the final app, to avoid writing to the console:

!console.log = function() {};
!console.warn = function() {};
!console.error = function() {};