Android Question App by app

sight

Member
Licensed User
Longtime User
HELLO,
how can I run an app developed in B4A from another app also developed in b4A?

thank you
 

DonManfred

Expert
Licensed User
Longtime User
B4X:
Dim in As Intent
    in = pm.GetApplicationIntent("packagename of app to start") ' PM = Packagemanager
    if in.isinitialized then
        startactivity(in)
    end if
 
Upvote 0
Top