For the last couple of weeks I've been exploring the use of the CustomBuildAction to create installation packages customised for each customer, however I've a few related questions.
A post in this thread Change Icon and Assets Files based on the Build Configuration defines five types of CustomBuildAction in the context of:
being:
However those appear applicable to an B4A (Android) build and so how do these relate to a B4J (Windows) build?
Is "After Packager" just equivalent to one of these number types?
What is the full range of CustomBuildActions available for B4J?
Thanks in anticipation of some guidance.
A post in this thread Change Icon and Assets Files based on the Build Configuration defines five types of CustomBuildAction in the context of:
B4X:
#CustomBuildAction: 1, %WINDIR%\system32\robocopy.exe, ..\Ringwood\ ..\Files\ Default.png
being:
At the moment, five Actions are available:
1 - Before the compiler cleans the objects folder (it happens after the code is parsed).
2 - Before R.java file is generated.
3 - Before the package is signed (the APK file at this point is: bin\temp.ap_).
4 - Before the APK is installed.
5 - After the APK is installed.
However those appear applicable to an B4A (Android) build and so how do these relate to a B4J (Windows) build?
Is "After Packager" just equivalent to one of these number types?
What is the full range of CustomBuildActions available for B4J?
Thanks in anticipation of some guidance.