No such module 'GoogleMaps' found however it is installed

前端 未结 6 2487
无人及你
无人及你 2021-02-20 03:21

I have installed the \'GoogleMaps\' pod using cocoa pods and the project was building correctly, however when I transferred my project to another device through iCloud (the proj

6条回答
  •  青春惊慌失措
    2021-02-20 04:00

    First off try to clean the project by

    Command + Shift + Options + K

    If I'm not mistaken, GoogleMaps framework is built from Objective-C so if there's still a problem then do the following steps:

    1. Create a bridging header file which you can trigger and setup automatically by creating a dummy Objective-C class in your Swift project. Xcode will then ask you if you would want to create a bridging header, click yes. Delete the dummy class you created after.
    2. Configure the header search path to point the Pods with recursion

    3. Do a clean-build.

提交回复
热议问题