Hi all
I want to wrap a few related apps up into one and allow the user to launch them all from one screen. How do I launch one app from another?
I found an example on here but when I run my launcher app I get the error:
It looks like I need to add something to the manifest file for this to work?
The code I am using is:
Thanks
I want to wrap a few related apps up into one and allow the user to launch them all from one screen. How do I launch one app from another?
I found an example on here but when I run my launcher app I get the error:
'android.content.ActivityNotFoundException: Unable to find explicit activity class {package.name/package.name.Activity}; have you declared this activity in your AndroidManifest.xml?'
It looks like I need to add something to the manifest file for this to work?
The code I am using is:
B4X:
Dim myIntent As Intent
myIntent.Initialize(myIntent.ACTION_MAIN,"")
myIntent.SetComponent("package.name/.activity")
StartActivity(myIntent)
Thanks