From aedb186e03ab119f5d1b2ea52f8e7e60fc954b98 Mon Sep 17 00:00:00 2001 From: iaudouard Date: Sun, 9 Nov 2025 17:18:12 +0000 Subject: [PATCH] fix(ios): added nitromodules import to module & view impl files --- ios/GoogleMapViewImpl.swift | 1 + ios/RNGoogleMapsPlusModule.swift | 2 ++ 2 files changed, 3 insertions(+) diff --git a/ios/GoogleMapViewImpl.swift b/ios/GoogleMapViewImpl.swift index a87be91..b553f12 100644 --- a/ios/GoogleMapViewImpl.swift +++ b/ios/GoogleMapViewImpl.swift @@ -2,6 +2,7 @@ import CoreLocation import GoogleMaps import GoogleMapsUtils import UIKit +import NitroModules final class GoogleMapsViewImpl: UIView, GMSMapViewDelegate, GMSIndoorDisplayDelegate { diff --git a/ios/RNGoogleMapsPlusModule.swift b/ios/RNGoogleMapsPlusModule.swift index 82c7336..18de6b6 100644 --- a/ios/RNGoogleMapsPlusModule.swift +++ b/ios/RNGoogleMapsPlusModule.swift @@ -1,3 +1,5 @@ +import NitroModules + final class RNGoogleMapsPlusModule: HybridRNGoogleMapsPlusModuleSpec { private let permissionHandler: PermissionHandler private let locationHandler: LocationHandler