createGlobalComponentManager

fun createGlobalComponentManager(    lifecycleOwner: LifecycleOwner,     applicationContext: Context,     additionalComponents: (GlobalComponent) -> List<ComponentInternalApi> = { val serviceProvider = applicationContext.iviApplication.getServiceProvider() listOf( IviVehiclePlatformComponent( VehicleSpecificationService.createApi(lifecycleOwner, serviceProvider), VehicleElectricEngineService.createApiOrNull(lifecycleOwner, serviceProvider) ), DaggerSearchShortcutsPlatformComponentGraph.factory() .create(applicationContext, it.componentProviderApi()) .searchShortcutsPlatformComponentApi() as ComponentInternalApi ) }): GlobalComponentManager

Creates an instance of the GlobalComponentManager.