I'm trying to start Firefox browser on button click:
Dim Intent1 As Intent
Intent1.Initialize(Intent1.ACTION_MAIN, "www.google.com")
Intent1.SetComponent("org.mozilla.firefox/.Main")
StartActivity(Intent1)
but I'm getting this error:
android.content.ActivityNotFoundException: Unable to find explicit activity class {org.mozilla.firefox/org.mozilla.firefox.Main}
any help would be appreciated
Dim Intent1 As Intent
Intent1.Initialize(Intent1.ACTION_MAIN, "www.google.com")
Intent1.SetComponent("org.mozilla.firefox/.Main")
StartActivity(Intent1)
but I'm getting this error:
android.content.ActivityNotFoundException: Unable to find explicit activity class {org.mozilla.firefox/org.mozilla.firefox.Main}
any help would be appreciated
Last edited: