Android Question It is possible to have two app logos, one for each build configuration?

Erel

B4X founder
Staff member
Licensed User
Longtime User
Yes. Example:
B4X:
#If FULL
#CustomBuildAction: 1, c:\windows\system32\cmd.exe, /c copy ..\full_icon.png res\drawable\icon.png
#End If

#If TRIAL
#CustomBuildAction: 1, c:\windows\system32\cmd.exe, /c copy ..\trial_icon.png res\drawable\icon.png
#End If
If you are using adaptive icons, which you should, then you will have a few files to copy.
 
Upvote 0
Top