I trying to implement google map with help of google compose sample project calls Crane in here: https://github.com/android/compose-samples/tree/main/Crane
I went with same implementation and using MapViewUtils to implement lifeCycler for map and prevent re-compose stuff and more... I put all android map key and also permissions on manifest, But my code getting crash on start of map:
This the point I wanna show map:
@Composable
fun MapScreen(latitude: String, longitude: String) {
// The MapView lifecycle is handled by this composable. As the MapView also needs to be updated
// with input from Compose UI, those updates are encapsulated into the MapViewContainer
// composable. In this way, when an update to the MapView happens, this composable won't
// recompose and the MapView won't need to be recreated.
val mapView = rememberMapViewWithLifecycle()
MapViewContainer(mapView, latitude, longitude)
}
@Composable
private fun MapViewContainer(
map: MapView,
latitude: String,
longitude: String
) {
// var zoom by savedInstanceState { InitialZoom }
AndroidView({ map }) { mapView ->
// Reading zoom so that AndroidView recomposes when it changes. The getMapAsync lambda
mapView.getMapAsync {
val position = LatLng(latitude.toDouble(), longitude.toDouble())
it.addMarker(
MarkerOptions().position(position)
)
it.moveCamera(CameraUpdateFactory.newLatLng(position))
}
}
}
And this is inside Util class:
@Composable
fun rememberMapViewWithLifecycle(): MapView {
val context = ContextAmbient.current
val mapView = remember {
MapView(context).apply {
id = R.id.map
}
}
// Makes MapView follow the lifecycle of this composable
val lifecycleObserver = rememberMapLifecycleObserver(mapView)
val lifecycle = LifecycleOwnerAmbient.current.lifecycle
onCommit(lifecycle) {
lifecycle.addObserver(lifecycleObserver)
onDispose {
lifecycle.removeObserver(lifecycleObserver)
}
}
return mapView
}
@Composable
private fun rememberMapLifecycleObserver(mapView: MapView): LifecycleEventObserver =
remember(mapView) {
LifecycleEventObserver { _, event ->
when (event) {
Lifecycle.Event.ON_CREATE -> mapView.onCreate(Bundle()) //Crashes here
Lifecycle.Event.ON_START -> mapView.onStart()
Lifecycle.Event.ON_RESUME -> mapView.onResume()
Lifecycle.Event.ON_PAUSE -> mapView.onPause()
Lifecycle.Event.ON_STOP -> mapView.onStop()
Lifecycle.Event.ON_DESTROY -> mapView.onDestroy()
else -> throw IllegalStateException()
}
}
}
And I'm getting this crash:
2020-11-05 12:16:09.282 2665-3383/com.google.android.gms.persistent E/ModuleIdSetter: exception when setting module id
java.lang.IllegalStateException: Unable to get current module info in ModuleManager created with non-module Context
at com.google.android.chimera.config.ModuleManager.getCurrentModule(:com.google.android.gms@202414022@20.24.14 (040700-319035315):2)
at aewd.a(:com.google.android.gms@202414022@20.24.14 (040700-319035315):4)
at aewg.b(:com.google.android.gms@202414022@20.24.14 (040700-319035315):9)
at aeso.a(Unknown Source:0)
at rpm.a(:com.google.android.gms@202414022@20.24.14 (040700-319035315):0)
at rlv.c(:com.google.android.gms@202414022@20.24.14 (040700-319035315):1)
at rlt.b(:com.google.android.gms@202414022@20.24.14 (040700-319035315):1)
at rok.b(:com.google.android.gms@202414022@20.24.14 (040700-319035315):6)
at rok.c(:com.google.android.gms@202414022@20.24.14 (040700-319035315):6)
at rok.b(:com.google.android.gms@202414022@20.24.14 (040700-319035315):10)
at rok.a(:com.google.android.gms@202414022@20.24.14 (040700-319035315):17)
at rok.g(:com.google.android.gms@202414022@20.24.14 (040700-319035315):3)
at sdr.a(:com.google.android.gms@202414022@20.24.14 (040700-319035315):2)
at scr.a(:com.google.android.gms@202414022@20.24.14 (040700-319035315):10)
at sci.a(:com.google.android.gms@202414022@20.24.14 (040700-319035315):0)
at scl.handleMessage(:com.google.android.gms@202414022@20.24.14 (040700-319035315):28)
at android.os.Handler.dispatchMessage(Handler.java:107)
at aekz.a(:com.google.android.gms@202414022@20.24.14 (040700-319035315):2)
at aekz.dispatchMessage(:com.google.android.gms@202414022@20.24.14 (040700-319035315):14)
at android.os.Looper.loop(Looper.java:214)
at android.os.HandlerThread.run(HandlerThread.java:67)