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?
Below is what works for my situation (my project can be used to produce two apps, app1 and app2. When creating app2's .aab file, rename app1.aab to app2.aab )
B4X:
#if aab and app2
#CustomBuildAction: after packager, c:\windows\system32\cmd.exe, /c ren app1.aab app2.aab
#End If
Below is what works for my situation (my project can be used to produce two apps, app1 and app2. When creating app2's .aab file, rename app1.aab to app2.aab )
B4X:
#if aab and app2
#CustomBuildAction: after packager, c:\windows\system32\cmd.exe, /c ren app1.aab app2.aab
#End If