Android Question Different app code but only one app

Dogbonesix

Active Member
Licensed User
Longtime User
I was try to make short cut to my wife's phone number using only the code below: (plus permissions, libraries and such)

ToastMessageShow("Calling XXX XXX-3441" ,True)
Dim p As PhoneCalls
StartActivity(p.Call("XXXXXX3441"))

Works like a champ! Just click on the App Icon and it dials - no fuss - no muss.

So I thought I would do the same thing for my daughter...

Also works without a problem the hitch is it overwrites my wife's app. Two different AKS, two different Folders, two different App Names BUT only the latest app installed is visible and runs.

How can I get two (or more) apps to reside on the same device?
 

Mahares

Expert
Licensed User
Longtime User
Two different AKS, two different Folders, two different App Names BUT only the latest app installed is visible and runs.
Did you check to make sure the package names are also different, in the build configurations. Usually, when an app overwrites the other, it is because they have the same package name.
 
Upvote 1

DonManfred

Expert
Licensed User
Longtime User
Change the Packagenmame
 
Upvote 0
Top