Android Question Downloading an App to Phone Disappearing Act

ansoUzr

Member
Licensed User
Longtime User
Hi:

I've been working on two different apps and now I am seeing a problem when downloading them to my Pixel 3a. If I have app1 on my phone then download app2, using the bridge or USB, this will cause app1 currently on my phone to disappear. If I app2 is on the phone, downloading app1 will cause app2 to disappear. I tried downloading another app - that worked fine, neither app1 nor app2, if present on the phone, disappeared.

I get the feeling that downloading process sees app1 and app2 as the same app. Both apps have different '#ApplicationLabel:' names.

Any ideas on to fix this?

Thanks.

William
 

DonManfred

Expert
Licensed User
Longtime User
1. Rule when developing a B4A app. Each app must have a unique packagename. Make sure your two projects does not have the same packagename (CTRL-B).

The applicationlabel are not relevant.
 
Last edited:
Upvote 0

JohnC

Expert
Licensed User
Longtime User
To elaborate on why this happens...if two different apps have the same package name, the latest one you install will overwrite the previous app with the same package name even if the app and it's applicationlabel is totally different.
 
Upvote 0
Top