Android Question [Solved] Publish Application Locally?

Charlie C

New Member
Licensed User
Hi. I noticed when you compile an app, no matter what, it overwrites the app last compiled. Even when set to "release", only one B4A app seems to be able to exist at any given time. How do I install an app, on it's own, to my phone so I can use it at any time? I have a few simple programs that it would be nice to have access to once in a while.
 

DonManfred

Expert
Licensed User
Longtime User
Use a different packagename for your apps. CTRL-B
 
Upvote 0

mangojack

Well-Known Member
Licensed User
Longtime User
In Addition to @DonManfred 's response .

also Change the Application Label .. the very first lines of Main Module .

B4X:
#Region  Project Attributes
    #ApplicationLabel:  My New App
    #VersionCode: 1
 
Upvote 0
Top