Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Flutter Error: no such module 'GoogleMaps'

I am working in a project bought by a client. The project is Fluxstore. A E-commerce built with Flutter.

I can run the project in Android (emulator and device=). But iOS doesn't run. I get this following error:

Launching lib/main.dart on iPhone 11 in debug mode...
Running pod install...
Running Xcode build...
Xcode build done.                                           138,6s
Failed to build iOS app
Could not build the application for the simulator.
Error launching application on iPhone 11.
Error output from Xcode build:
↳
** BUILD FAILED **


Xcode's output:
↳
/Users/user./projects/project/ios/Runner/AppDelegate.swift:3:8: error: no such module 'GoogleMaps'
import GoogleMaps
       ^
note: Using new build system
note: Building targets in parallel
note: Planning build
note: Constructing build description

I looked up on solutions for this issue in Internet but nothing works. Can somebody please help me?

like image 259
André Junior Avatar asked Jul 12 '26 00:07

André Junior


2 Answers

flutter pub get
cd ios
pod install
pod update
like image 161
egorikem Avatar answered Jul 14 '26 14:07

egorikem


delete all pod file. run flutter clean. then go to iOS folder and run pod init. It's create a pod file. Add pod 'GoogleMaps' this line here before target 'Runner' do

I share my pod file code

# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
pod 'Firebase/Analytics'
pod 'GoogleMaps'
# add pods for any other desired Firebase products
# https://firebase.google.com/docs/ios/setup#available-pods

target 'Runner' do
  # Comment the next line if you don't want to use dynamic frameworks
  
  # Comment the next line if you don't want to use dynamic frameworks
  use_frameworks!

  # Pods for Runner

end
like image 28
Abir Ahsan Avatar answered Jul 14 '26 13:07

Abir Ahsan



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!