Android Question HeySmart

pazzokli

Active Member
Licensed User
Longtime User
Hi, I want start esternal application called HeySmart. With intent and package name doesn't start. Other apps start with same code.
 

pazzokli

Active Member
Licensed User
Longtime User
Use the Packagemanager, search for the app you want to start.
Get the startingintent for the given packagename. Try to use this intent to start the app.

Thanks Manfred, I used code below but with correct package name doesn't start.
With package name of GMAIL work.

B4X:
    Dim i As Intent
    Dim p As PackageManager
    i.Initialize("", "")
    i = p.GetApplicationIntent("com.konelco.heysmart")
    StartActivity(i)

Sorry, Sorry manfred..... WORK. Probably name was wrong
 
Last edited:
Upvote 0
Top