Imran

Results 2 comments of Imran

Solution: You have to add API key in the FetchUrl class and your URL should be like this: String url = "https://maps.googleapis.com/maps/api/directions/"+output+"?"+parameters + "&key=" + MY_API_KEY Hope you'll find your...

Update FetchUrl class: ``` public class FetchUrl { public static String getUrl(LatLng origin, LatLng dest) { String str_origin = "origin=" + origin.latitude + "," + origin.longitude; String str_dest = "destination="...