The app utilizes Google Maps, which runs on all versions except Android 8. To load the map, we use SupportMapFragment from com.google.android.gms.maps.SupportMapFragment().
open class SupportMapFragment : com.google.android.gms.maps.SupportMapFragment() {
fun getMapAsynchronous(callback: OnMapReadyCallback) {
super.getMapAsync { googleMap: GoogleMap ->
callback.onMapReady(MapClient(googleMap))
}
}
}
The map version we are using is
gmsImplementation 'com.google.android.gms:play-services-maps:18.1.0'.
Can you help me? Thanks in advance.
Regards,
David Nedeljkovic
The app utilizes Google Maps, which runs on all versions except Android 8. To load the map, we use SupportMapFragment from
com.google.android.gms.maps.SupportMapFragment().The map version we are using is
gmsImplementation 'com.google.android.gms:play-services-maps:18.1.0'.Can you help me? Thanks in advance.
Regards,
David Nedeljkovic