My project can produce two apps, and which to produce is decided by a Conditional Symbol FreeApp
Right now the name of the compiled .aab/.apk file is same as the project name. How do I make some changes so that it's same as the applicable #ApplictionLabel name , similar effect to the app name and app version?
TIA
How app name and versions are handled:
#if freeApp
#ApplicationLabel: Coolapp free
#VersionCode: 12345
#VersionName: 1.23.45
#else
#ApplicationLabel: Coolapp
#VersionCode: 1.00.00
#VersionName: 1.00.00
#End If
TIA