I have simple code that opens URL in a browser:
startActivity(Intent(
Intent.ACTION_VIEW, Uri.parse(resources.getString(R.string.application_url))
))
How can I convert this to the navigation component item?
Do I need to build custom navigator for this, or navigation component has something built in for such case?