I would like to use the following code to start a secondary app
but i don't know the name of the app package to start
The question is: given a certain app installed on an Android device, how to know the package name of that app?
B4X:
Dim pm As PackageManager
Dim in As Intent
in.Initialize("","")
in=pm.GetApplicationIntent(Nome_Package_App_Secondaria)
but i don't know the name of the app package to start
The question is: given a certain app installed on an Android device, how to know the package name of that app?