error when I try to draw a route between two markers
I have recently started studying kotlin and android studio, in my application I would like to trace a path between two points, in my case marckers, my problem arises when I try to trace a path between two points, I get this error:
Cannot access class 'org.osmdroid.views.overlay.PathOverlay'. Check your module classpath for missing or conflicting dependencies.
how can i solve?
below is my code:
class MainActivity : AppCompatActivity() {
private lateinit var mapView : MapView
private lateinit...