How do I Remove "unnamed road" from geocoder results? I want this to apply to all languages, not just English
Current code returns unnamed road in other languages such as German ("unbenannte Straße")
val geocoder = Geocoder(this, Locale.ENGLISH)
val addresses: List<Address>?
addresses = geocoder.getFromLocation(latLng.latitude, latLng.longitude, 1)