B4A Tutorial Using CustomBuildAction to deploy to multiple devices at once - Erel    Apr 19, 2020   (6 reactions) This tutorial will demonstrate how you can use CustomBuildAction attribute to deploy to multiple... the installation step (step #4).
#If RELEASE
'emulator
#CustomBuildAction: 4, c:\android-sdk... B4J Code Snippet Rename result.jar using #Macro or #CustomBuildAction - aeric    Sep 12, 2025 Note #1: To use the following snippets, remove the blank space in between cmd and .exe due to forum script check.
#Macro: Title, Rename, ide://run?file=%WINDIR%\System32\cmd .exe&Args=/c&Args=ren&Args=result.jar&Args=libget-non-ui.jar
#If Release
#CustomBuildAction: 2, C:\Windows\System32\cmd .exe, /c del libget-non-ui.jar
#CustomBuildAction: 2, C:\Windows\System32\cmd .exe, /c... B4J Question #CustomBuildAction: Copy entire folder - jmon    May 24, 2023
I found this example for a single file:
#CustomBuildAction: After Packager, %WINDIR%\System32\robocopy.exe, ..\ temp\build\bin\ Charsets.properties
How to modify to copy a folder "AdditionalFolder" that would be located at the root of my project?
#CustomBuildAction: After Packager... B4J Tutorial Using CustomBuildAction with WinRAR - aeric    Jan 25, 2022   (3 reactions) We can use #CustomBuildAction to archive some files and folders into a ZIP or RAR file (if you have WinRAR installed).
#If RELEASE
#CustomBuildAction: 2, C:\Program Files\WinRAR\WinRAR.exe, a upload... B4A Question What the different between #CustomBuildAction and #Macro in B4A 13.3? - Theera    May 28, 2025 Refer to New version B4A 13.3 BETA #1,#CustomBuildAction will be replaced with #Macro 100% ,or not?... B4A Question CustomBuildAction Rename APK with version - Blueforcer    Feb 7, 2025 Is it possible,using CustomBuildAction, to rename the compiled APK and add the current VersionName?
So Netplus.apk becomes NetplusCore_1.2.5.apk for example?
thanks in advise... Wish Project parameters for CustomBuildAction - tchart    Dec 16, 2024   (1 reaction) CustomBuildAction arguments too?
Referring to this; https://www.b4x.com/android/forum/threads/b4x-comment-links... with custom build actions
eg #CustomBuildAction: 2, D:\Temp\test.bat, %PROJECT_NAME%
Where test.bat is
echo... the parameters when they are used in the arguments
#CustomBuildAction: 2, %PROJECT_NAME%\test.bat,... B4J Question CustomBuildAction Types - bdunkleysmith    Jun 30, 2023   (1 reaction) For the last couple of weeks I've been exploring the use of the CustomBuildAction to create... of CustomBuildAction in the context of:
#CustomBuildAction: 1, %WINDIR%\system32\robocopy.exe... B4J Question CustomBuildAction: After Packager - Copy file from /objects folder to temp\build\bin\ - EvgenyB4A    May 24, 2023 How to copy the file, for example settings.json that is in /Objects folder in debug and release mode , to temp\build\bin folder after standalone packager finishes?... B4J Tutorial Using CustomBuildAction to your advantage - tchart    Nov 10, 2016   (9 reactions) / CustomBuildAction is a powerful ally. Generally to do anything useful you need to call a custom... implement generic logic based without passing variables. Firstly there are two CustomBuildAction...); #CustomBuildAction: 1, c:\windows\system32\attrib.exe, +r res\*.* /s However this relies on the developer providing... pass the project name to the target program). Ok, so say we have a CustomBuildAction that calls a batch file like this. #CustomBuildAction: 2, C:\Apps\B4J\Tools\Demo\demo.bat, While no arguments... Page: 1   2   3   4   5   6   |