Is it possible to convert an Uri to String and vice versa? Because I want to get the the Uri converted into String to pas
Uri
String
String to Uri
Uri myUri = Uri.parse("https://www.google.com");
Uri to String
Uri uri; String stringUri = uri.toString();