function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Rodrigo_RochaRodrigo_Rocha 

How to use lightning:navigation to navigate to a stand alone app?

We currently have some code similar to this that's been triggered whenever a user clicks on a button:
var urlEvent = $A.get("e.force:navigateToURL");
    urlEvent.setParams({
            "url": '/c/myApp.app?recId=' + component.get('v.recordId') + '&Rows=' + component.get('v.Rows') + '&Bytes=' + component.get('v.Bytes')
    });
    urlEvent.fire();
Is it possible to replace it using the lightning:navigation?
I'm not sure if the lightning:navigation will support navigate to a different app (new window) as well be able to receive parameters whenever "called".