Framework not found GoogleMaps sdk in iOS










19















I want to use google map to existing(not a new one) iPhone project.Now i am using Google map ios sdk and i successfully added google map framework to my project.But i got error like this



ld: framework not found GoogleMaps
clang: error: linker command failed with exit code 1 (use -v to see invocation)


How to solve this issue.I am using xcode4.5 and google map iOS sdk version is 1.5. When i am creating new project with google map iOS sdk then no error getting for me.Error only for existing iOS Project.Please help me.










share|improve this question




























    19















    I want to use google map to existing(not a new one) iPhone project.Now i am using Google map ios sdk and i successfully added google map framework to my project.But i got error like this



    ld: framework not found GoogleMaps
    clang: error: linker command failed with exit code 1 (use -v to see invocation)


    How to solve this issue.I am using xcode4.5 and google map iOS sdk version is 1.5. When i am creating new project with google map iOS sdk then no error getting for me.Error only for existing iOS Project.Please help me.










    share|improve this question


























      19












      19








      19


      4






      I want to use google map to existing(not a new one) iPhone project.Now i am using Google map ios sdk and i successfully added google map framework to my project.But i got error like this



      ld: framework not found GoogleMaps
      clang: error: linker command failed with exit code 1 (use -v to see invocation)


      How to solve this issue.I am using xcode4.5 and google map iOS sdk version is 1.5. When i am creating new project with google map iOS sdk then no error getting for me.Error only for existing iOS Project.Please help me.










      share|improve this question
















      I want to use google map to existing(not a new one) iPhone project.Now i am using Google map ios sdk and i successfully added google map framework to my project.But i got error like this



      ld: framework not found GoogleMaps
      clang: error: linker command failed with exit code 1 (use -v to see invocation)


      How to solve this issue.I am using xcode4.5 and google map iOS sdk version is 1.5. When i am creating new project with google map iOS sdk then no error getting for me.Error only for existing iOS Project.Please help me.







      iphone ios xcode4.5 google-maps-sdk-ios






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Oct 2 '13 at 13:04







      IKKA

















      asked Oct 2 '13 at 5:40









      IKKAIKKA

      1,95432059




      1,95432059






















          11 Answers
          11






          active

          oldest

          votes


















          40














          I solved my issue



          You need to do this



          1. Click on your project (targets)

          2. Click on Build Settings

          3. Under Framework search paths (set your framework path)

          Following information for getting framework search paths



          1. Right click on your framework folder (for ex: GoogleMaps.framework)

          2. select Get info

          3. copy the path from General->where and paste this path in your framework search path (path should contain in single line)

          Good luck






          share|improve this answer























          • Oh, thank you sooo much. Incorrect search path was my problem. +1

            – OptimusCrime
            Feb 18 '14 at 14:29






          • 1





            I am not able to replicate your way. Please enlight me

            – Abdul Yasin
            Jan 14 '15 at 9:22











          • It happened to me when I started changing my FS folders

            – Shlomi Schwartz
            Apr 2 '15 at 8:39











          • For me only helped link to Headers Folder of GoogleMap Framework in Header Search Path

            – Nik Kov
            Sep 7 '16 at 7:50


















          9














          I encountered a scenario in which I had to import a project that was using Google Maps and noticed the same problem - module: "Google Maps" not found.
          To solve this problem it was necessary to delete Podfile.lock and Podfile folder and re-install the pods again. Good luck !






          share|improve this answer


















          • 1





            This worked for me.

            – TheValyreanGroup
            Jan 12 '18 at 12:07


















          3














          Clean your project. The shortcut is command + shift + k. This will clear information that xcode has stored that might imply that the sdk isn't included.



          Also press the project icon at the top of the hierarchy of files, press the target that is your project, press build phases, open link with binary libraries, and make sure that the google maps sdk is in there. If it is not, press + and add it in.






          share|improve this answer






























            1














            Follow the steps :



            • Download GoogleMaps-iOS-1.1.0.zip from their site

            • Unzip the file. You now have a GoogleMaps-iOS-1.1.0 folder

            • In that folder you have a GoogleMaps.framework folder.

            • Copy or move the GoogleMaps.framework folder to inside your project folder (in Finder).

            • Drag the GoogleMaps.framework folder onto your Frameworks group in Xcode.

            • In the options sheet, uncheck "Copy items into destination group's folder". Make sure your target is checked in "Add to targets". Click OK.

            • (Note that you can also do this the other way, by not copying it into your project folder and checking "Copy items into destination group's folder". Xcode will copy the folder itself.)


            • Import using #import "GoogleMaps/GoogleMaps.h". The angle bracket usually work too, but in this case it should use quotes.


            From : <GoogleMaps/GoogleMaps.h> file not found Google Maps SDK for iOS






            share|improve this answer
































              1














              my problem was fixed by adding in:




              build settings



              Framework Search Paths




              clickable and add the following lines:




              "$PODS_ROOT/GoogleMaps/Base/Frameworks"



              "$PODS_ROOT/GoogleMaps/Maps/Frameworks"







              share|improve this answer






























                1














                You can also :
                - remove GoogleMaps from Podfile
                - pod install
                - add GoogleMaps to your Podfile again
                - pod install



                This solution works for me, you can also check the search paths a well.






                share|improve this answer






























                  0














                  I've been struggling with this issue for hours; I'm using CocoaPods, Swift and Xcode 6.1.1. I followed all the steps for including GoogleMaps in my project carefully, tried many different things like removing symbolic links in the downloaded package or manually linking the binaries in build phases or trying #include "GoogleMaps.h", #include "GoogleMaps/GoogleMaps.h" and "#include <GoogleMaps/GoogleMaps.h> in my bridge file, none of that worked... Finally used CocoaPods instead of including the framework myself and it worked! Hope it helps someone out there:



                  In the Podfile:



                  pod 'Google-Maps-iOS-SDK', '~> 1.9.2'



                  And in your Bridge file:



                  #import "GoogleMaps.h"






                  share|improve this answer






























                    0














                    Delete derived data and delete Podfile.lock file and then run pod install.






                    share|improve this answer






























                      0














                      Maybe it'll be useful for anybody, next steps helped me:
                      1. Delete "Headers" and "GoogleMaps" folders manually (from the Finder).
                      2. Run 'pod install'
                      3. Re-build the project in Xcode.






                      share|improve this answer






























                        0














                        In my case, I forgot that I need to open the workspace file with pods, not the project.






                        share|improve this answer






























                          0














                          If you use Pods



                          Left menu > Pods > Pods > choose Framework > right menu > copy path from "ios/....."



                          My: ios/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework



                          enter image description here



                          Then Project > Build Setting > Framework Search Path > Click on



                          $(PROJECT_DIR)/ios/Pods/GoogleMaps/Maps/Frameworks/GoogleMapsCore.framework



                          enter image description here






                          share|improve this answer























                            Your Answer






                            StackExchange.ifUsing("editor", function ()
                            StackExchange.using("externalEditor", function ()
                            StackExchange.using("snippets", function ()
                            StackExchange.snippets.init();
                            );
                            );
                            , "code-snippets");

                            StackExchange.ready(function()
                            var channelOptions =
                            tags: "".split(" "),
                            id: "1"
                            ;
                            initTagRenderer("".split(" "), "".split(" "), channelOptions);

                            StackExchange.using("externalEditor", function()
                            // Have to fire editor after snippets, if snippets enabled
                            if (StackExchange.settings.snippets.snippetsEnabled)
                            StackExchange.using("snippets", function()
                            createEditor();
                            );

                            else
                            createEditor();

                            );

                            function createEditor()
                            StackExchange.prepareEditor(
                            heartbeatType: 'answer',
                            autoActivateHeartbeat: false,
                            convertImagesToLinks: true,
                            noModals: true,
                            showLowRepImageUploadWarning: true,
                            reputationToPostImages: 10,
                            bindNavPrevention: true,
                            postfix: "",
                            imageUploader:
                            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
                            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
                            allowUrls: true
                            ,
                            onDemand: true,
                            discardSelector: ".discard-answer"
                            ,immediatelyShowMarkdownHelp:true
                            );



                            );













                            draft saved

                            draft discarded


















                            StackExchange.ready(
                            function ()
                            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f19130629%2fframework-not-found-googlemaps-sdk-in-ios%23new-answer', 'question_page');

                            );

                            Post as a guest















                            Required, but never shown

























                            11 Answers
                            11






                            active

                            oldest

                            votes








                            11 Answers
                            11






                            active

                            oldest

                            votes









                            active

                            oldest

                            votes






                            active

                            oldest

                            votes









                            40














                            I solved my issue



                            You need to do this



                            1. Click on your project (targets)

                            2. Click on Build Settings

                            3. Under Framework search paths (set your framework path)

                            Following information for getting framework search paths



                            1. Right click on your framework folder (for ex: GoogleMaps.framework)

                            2. select Get info

                            3. copy the path from General->where and paste this path in your framework search path (path should contain in single line)

                            Good luck






                            share|improve this answer























                            • Oh, thank you sooo much. Incorrect search path was my problem. +1

                              – OptimusCrime
                              Feb 18 '14 at 14:29






                            • 1





                              I am not able to replicate your way. Please enlight me

                              – Abdul Yasin
                              Jan 14 '15 at 9:22











                            • It happened to me when I started changing my FS folders

                              – Shlomi Schwartz
                              Apr 2 '15 at 8:39











                            • For me only helped link to Headers Folder of GoogleMap Framework in Header Search Path

                              – Nik Kov
                              Sep 7 '16 at 7:50















                            40














                            I solved my issue



                            You need to do this



                            1. Click on your project (targets)

                            2. Click on Build Settings

                            3. Under Framework search paths (set your framework path)

                            Following information for getting framework search paths



                            1. Right click on your framework folder (for ex: GoogleMaps.framework)

                            2. select Get info

                            3. copy the path from General->where and paste this path in your framework search path (path should contain in single line)

                            Good luck






                            share|improve this answer























                            • Oh, thank you sooo much. Incorrect search path was my problem. +1

                              – OptimusCrime
                              Feb 18 '14 at 14:29






                            • 1





                              I am not able to replicate your way. Please enlight me

                              – Abdul Yasin
                              Jan 14 '15 at 9:22











                            • It happened to me when I started changing my FS folders

                              – Shlomi Schwartz
                              Apr 2 '15 at 8:39











                            • For me only helped link to Headers Folder of GoogleMap Framework in Header Search Path

                              – Nik Kov
                              Sep 7 '16 at 7:50













                            40












                            40








                            40







                            I solved my issue



                            You need to do this



                            1. Click on your project (targets)

                            2. Click on Build Settings

                            3. Under Framework search paths (set your framework path)

                            Following information for getting framework search paths



                            1. Right click on your framework folder (for ex: GoogleMaps.framework)

                            2. select Get info

                            3. copy the path from General->where and paste this path in your framework search path (path should contain in single line)

                            Good luck






                            share|improve this answer













                            I solved my issue



                            You need to do this



                            1. Click on your project (targets)

                            2. Click on Build Settings

                            3. Under Framework search paths (set your framework path)

                            Following information for getting framework search paths



                            1. Right click on your framework folder (for ex: GoogleMaps.framework)

                            2. select Get info

                            3. copy the path from General->where and paste this path in your framework search path (path should contain in single line)

                            Good luck







                            share|improve this answer












                            share|improve this answer



                            share|improve this answer










                            answered Nov 13 '13 at 6:03









                            IKKAIKKA

                            1,95432059




                            1,95432059












                            • Oh, thank you sooo much. Incorrect search path was my problem. +1

                              – OptimusCrime
                              Feb 18 '14 at 14:29






                            • 1





                              I am not able to replicate your way. Please enlight me

                              – Abdul Yasin
                              Jan 14 '15 at 9:22











                            • It happened to me when I started changing my FS folders

                              – Shlomi Schwartz
                              Apr 2 '15 at 8:39











                            • For me only helped link to Headers Folder of GoogleMap Framework in Header Search Path

                              – Nik Kov
                              Sep 7 '16 at 7:50

















                            • Oh, thank you sooo much. Incorrect search path was my problem. +1

                              – OptimusCrime
                              Feb 18 '14 at 14:29






                            • 1





                              I am not able to replicate your way. Please enlight me

                              – Abdul Yasin
                              Jan 14 '15 at 9:22











                            • It happened to me when I started changing my FS folders

                              – Shlomi Schwartz
                              Apr 2 '15 at 8:39











                            • For me only helped link to Headers Folder of GoogleMap Framework in Header Search Path

                              – Nik Kov
                              Sep 7 '16 at 7:50
















                            Oh, thank you sooo much. Incorrect search path was my problem. +1

                            – OptimusCrime
                            Feb 18 '14 at 14:29





                            Oh, thank you sooo much. Incorrect search path was my problem. +1

                            – OptimusCrime
                            Feb 18 '14 at 14:29




                            1




                            1





                            I am not able to replicate your way. Please enlight me

                            – Abdul Yasin
                            Jan 14 '15 at 9:22





                            I am not able to replicate your way. Please enlight me

                            – Abdul Yasin
                            Jan 14 '15 at 9:22













                            It happened to me when I started changing my FS folders

                            – Shlomi Schwartz
                            Apr 2 '15 at 8:39





                            It happened to me when I started changing my FS folders

                            – Shlomi Schwartz
                            Apr 2 '15 at 8:39













                            For me only helped link to Headers Folder of GoogleMap Framework in Header Search Path

                            – Nik Kov
                            Sep 7 '16 at 7:50





                            For me only helped link to Headers Folder of GoogleMap Framework in Header Search Path

                            – Nik Kov
                            Sep 7 '16 at 7:50













                            9














                            I encountered a scenario in which I had to import a project that was using Google Maps and noticed the same problem - module: "Google Maps" not found.
                            To solve this problem it was necessary to delete Podfile.lock and Podfile folder and re-install the pods again. Good luck !






                            share|improve this answer


















                            • 1





                              This worked for me.

                              – TheValyreanGroup
                              Jan 12 '18 at 12:07















                            9














                            I encountered a scenario in which I had to import a project that was using Google Maps and noticed the same problem - module: "Google Maps" not found.
                            To solve this problem it was necessary to delete Podfile.lock and Podfile folder and re-install the pods again. Good luck !






                            share|improve this answer


















                            • 1





                              This worked for me.

                              – TheValyreanGroup
                              Jan 12 '18 at 12:07













                            9












                            9








                            9







                            I encountered a scenario in which I had to import a project that was using Google Maps and noticed the same problem - module: "Google Maps" not found.
                            To solve this problem it was necessary to delete Podfile.lock and Podfile folder and re-install the pods again. Good luck !






                            share|improve this answer













                            I encountered a scenario in which I had to import a project that was using Google Maps and noticed the same problem - module: "Google Maps" not found.
                            To solve this problem it was necessary to delete Podfile.lock and Podfile folder and re-install the pods again. Good luck !







                            share|improve this answer












                            share|improve this answer



                            share|improve this answer










                            answered Oct 14 '15 at 8:42









                            Stefan Ciprian HotoleanuStefan Ciprian Hotoleanu

                            1,0671422




                            1,0671422







                            • 1





                              This worked for me.

                              – TheValyreanGroup
                              Jan 12 '18 at 12:07












                            • 1





                              This worked for me.

                              – TheValyreanGroup
                              Jan 12 '18 at 12:07







                            1




                            1





                            This worked for me.

                            – TheValyreanGroup
                            Jan 12 '18 at 12:07





                            This worked for me.

                            – TheValyreanGroup
                            Jan 12 '18 at 12:07











                            3














                            Clean your project. The shortcut is command + shift + k. This will clear information that xcode has stored that might imply that the sdk isn't included.



                            Also press the project icon at the top of the hierarchy of files, press the target that is your project, press build phases, open link with binary libraries, and make sure that the google maps sdk is in there. If it is not, press + and add it in.






                            share|improve this answer



























                              3














                              Clean your project. The shortcut is command + shift + k. This will clear information that xcode has stored that might imply that the sdk isn't included.



                              Also press the project icon at the top of the hierarchy of files, press the target that is your project, press build phases, open link with binary libraries, and make sure that the google maps sdk is in there. If it is not, press + and add it in.






                              share|improve this answer

























                                3












                                3








                                3







                                Clean your project. The shortcut is command + shift + k. This will clear information that xcode has stored that might imply that the sdk isn't included.



                                Also press the project icon at the top of the hierarchy of files, press the target that is your project, press build phases, open link with binary libraries, and make sure that the google maps sdk is in there. If it is not, press + and add it in.






                                share|improve this answer













                                Clean your project. The shortcut is command + shift + k. This will clear information that xcode has stored that might imply that the sdk isn't included.



                                Also press the project icon at the top of the hierarchy of files, press the target that is your project, press build phases, open link with binary libraries, and make sure that the google maps sdk is in there. If it is not, press + and add it in.







                                share|improve this answer












                                share|improve this answer



                                share|improve this answer










                                answered Oct 2 '13 at 5:44









                                AdamGAdamG

                                3,41321324




                                3,41321324





















                                    1














                                    Follow the steps :



                                    • Download GoogleMaps-iOS-1.1.0.zip from their site

                                    • Unzip the file. You now have a GoogleMaps-iOS-1.1.0 folder

                                    • In that folder you have a GoogleMaps.framework folder.

                                    • Copy or move the GoogleMaps.framework folder to inside your project folder (in Finder).

                                    • Drag the GoogleMaps.framework folder onto your Frameworks group in Xcode.

                                    • In the options sheet, uncheck "Copy items into destination group's folder". Make sure your target is checked in "Add to targets". Click OK.

                                    • (Note that you can also do this the other way, by not copying it into your project folder and checking "Copy items into destination group's folder". Xcode will copy the folder itself.)


                                    • Import using #import "GoogleMaps/GoogleMaps.h". The angle bracket usually work too, but in this case it should use quotes.


                                    From : <GoogleMaps/GoogleMaps.h> file not found Google Maps SDK for iOS






                                    share|improve this answer





























                                      1














                                      Follow the steps :



                                      • Download GoogleMaps-iOS-1.1.0.zip from their site

                                      • Unzip the file. You now have a GoogleMaps-iOS-1.1.0 folder

                                      • In that folder you have a GoogleMaps.framework folder.

                                      • Copy or move the GoogleMaps.framework folder to inside your project folder (in Finder).

                                      • Drag the GoogleMaps.framework folder onto your Frameworks group in Xcode.

                                      • In the options sheet, uncheck "Copy items into destination group's folder". Make sure your target is checked in "Add to targets". Click OK.

                                      • (Note that you can also do this the other way, by not copying it into your project folder and checking "Copy items into destination group's folder". Xcode will copy the folder itself.)


                                      • Import using #import "GoogleMaps/GoogleMaps.h". The angle bracket usually work too, but in this case it should use quotes.


                                      From : <GoogleMaps/GoogleMaps.h> file not found Google Maps SDK for iOS






                                      share|improve this answer



























                                        1












                                        1








                                        1







                                        Follow the steps :



                                        • Download GoogleMaps-iOS-1.1.0.zip from their site

                                        • Unzip the file. You now have a GoogleMaps-iOS-1.1.0 folder

                                        • In that folder you have a GoogleMaps.framework folder.

                                        • Copy or move the GoogleMaps.framework folder to inside your project folder (in Finder).

                                        • Drag the GoogleMaps.framework folder onto your Frameworks group in Xcode.

                                        • In the options sheet, uncheck "Copy items into destination group's folder". Make sure your target is checked in "Add to targets". Click OK.

                                        • (Note that you can also do this the other way, by not copying it into your project folder and checking "Copy items into destination group's folder". Xcode will copy the folder itself.)


                                        • Import using #import "GoogleMaps/GoogleMaps.h". The angle bracket usually work too, but in this case it should use quotes.


                                        From : <GoogleMaps/GoogleMaps.h> file not found Google Maps SDK for iOS






                                        share|improve this answer















                                        Follow the steps :



                                        • Download GoogleMaps-iOS-1.1.0.zip from their site

                                        • Unzip the file. You now have a GoogleMaps-iOS-1.1.0 folder

                                        • In that folder you have a GoogleMaps.framework folder.

                                        • Copy or move the GoogleMaps.framework folder to inside your project folder (in Finder).

                                        • Drag the GoogleMaps.framework folder onto your Frameworks group in Xcode.

                                        • In the options sheet, uncheck "Copy items into destination group's folder". Make sure your target is checked in "Add to targets". Click OK.

                                        • (Note that you can also do this the other way, by not copying it into your project folder and checking "Copy items into destination group's folder". Xcode will copy the folder itself.)


                                        • Import using #import "GoogleMaps/GoogleMaps.h". The angle bracket usually work too, but in this case it should use quotes.


                                        From : <GoogleMaps/GoogleMaps.h> file not found Google Maps SDK for iOS







                                        share|improve this answer














                                        share|improve this answer



                                        share|improve this answer








                                        edited May 23 '17 at 12:10









                                        Community

                                        11




                                        11










                                        answered Oct 2 '13 at 5:46









                                        MaulikMaulik

                                        17k1474131




                                        17k1474131





















                                            1














                                            my problem was fixed by adding in:




                                            build settings



                                            Framework Search Paths




                                            clickable and add the following lines:




                                            "$PODS_ROOT/GoogleMaps/Base/Frameworks"



                                            "$PODS_ROOT/GoogleMaps/Maps/Frameworks"







                                            share|improve this answer



























                                              1














                                              my problem was fixed by adding in:




                                              build settings



                                              Framework Search Paths




                                              clickable and add the following lines:




                                              "$PODS_ROOT/GoogleMaps/Base/Frameworks"



                                              "$PODS_ROOT/GoogleMaps/Maps/Frameworks"







                                              share|improve this answer

























                                                1












                                                1








                                                1







                                                my problem was fixed by adding in:




                                                build settings



                                                Framework Search Paths




                                                clickable and add the following lines:




                                                "$PODS_ROOT/GoogleMaps/Base/Frameworks"



                                                "$PODS_ROOT/GoogleMaps/Maps/Frameworks"







                                                share|improve this answer













                                                my problem was fixed by adding in:




                                                build settings



                                                Framework Search Paths




                                                clickable and add the following lines:




                                                "$PODS_ROOT/GoogleMaps/Base/Frameworks"



                                                "$PODS_ROOT/GoogleMaps/Maps/Frameworks"








                                                share|improve this answer












                                                share|improve this answer



                                                share|improve this answer










                                                answered Nov 1 '17 at 20:07









                                                sebastian gamboasebastian gamboa

                                                2618




                                                2618





















                                                    1














                                                    You can also :
                                                    - remove GoogleMaps from Podfile
                                                    - pod install
                                                    - add GoogleMaps to your Podfile again
                                                    - pod install



                                                    This solution works for me, you can also check the search paths a well.






                                                    share|improve this answer



























                                                      1














                                                      You can also :
                                                      - remove GoogleMaps from Podfile
                                                      - pod install
                                                      - add GoogleMaps to your Podfile again
                                                      - pod install



                                                      This solution works for me, you can also check the search paths a well.






                                                      share|improve this answer

























                                                        1












                                                        1








                                                        1







                                                        You can also :
                                                        - remove GoogleMaps from Podfile
                                                        - pod install
                                                        - add GoogleMaps to your Podfile again
                                                        - pod install



                                                        This solution works for me, you can also check the search paths a well.






                                                        share|improve this answer













                                                        You can also :
                                                        - remove GoogleMaps from Podfile
                                                        - pod install
                                                        - add GoogleMaps to your Podfile again
                                                        - pod install



                                                        This solution works for me, you can also check the search paths a well.







                                                        share|improve this answer












                                                        share|improve this answer



                                                        share|improve this answer










                                                        answered Aug 27 '18 at 12:11









                                                        WaleedAmmariWaleedAmmari

                                                        32229




                                                        32229





















                                                            0














                                                            I've been struggling with this issue for hours; I'm using CocoaPods, Swift and Xcode 6.1.1. I followed all the steps for including GoogleMaps in my project carefully, tried many different things like removing symbolic links in the downloaded package or manually linking the binaries in build phases or trying #include "GoogleMaps.h", #include "GoogleMaps/GoogleMaps.h" and "#include <GoogleMaps/GoogleMaps.h> in my bridge file, none of that worked... Finally used CocoaPods instead of including the framework myself and it worked! Hope it helps someone out there:



                                                            In the Podfile:



                                                            pod 'Google-Maps-iOS-SDK', '~> 1.9.2'



                                                            And in your Bridge file:



                                                            #import "GoogleMaps.h"






                                                            share|improve this answer



























                                                              0














                                                              I've been struggling with this issue for hours; I'm using CocoaPods, Swift and Xcode 6.1.1. I followed all the steps for including GoogleMaps in my project carefully, tried many different things like removing symbolic links in the downloaded package or manually linking the binaries in build phases or trying #include "GoogleMaps.h", #include "GoogleMaps/GoogleMaps.h" and "#include <GoogleMaps/GoogleMaps.h> in my bridge file, none of that worked... Finally used CocoaPods instead of including the framework myself and it worked! Hope it helps someone out there:



                                                              In the Podfile:



                                                              pod 'Google-Maps-iOS-SDK', '~> 1.9.2'



                                                              And in your Bridge file:



                                                              #import "GoogleMaps.h"






                                                              share|improve this answer

























                                                                0












                                                                0








                                                                0







                                                                I've been struggling with this issue for hours; I'm using CocoaPods, Swift and Xcode 6.1.1. I followed all the steps for including GoogleMaps in my project carefully, tried many different things like removing symbolic links in the downloaded package or manually linking the binaries in build phases or trying #include "GoogleMaps.h", #include "GoogleMaps/GoogleMaps.h" and "#include <GoogleMaps/GoogleMaps.h> in my bridge file, none of that worked... Finally used CocoaPods instead of including the framework myself and it worked! Hope it helps someone out there:



                                                                In the Podfile:



                                                                pod 'Google-Maps-iOS-SDK', '~> 1.9.2'



                                                                And in your Bridge file:



                                                                #import "GoogleMaps.h"






                                                                share|improve this answer













                                                                I've been struggling with this issue for hours; I'm using CocoaPods, Swift and Xcode 6.1.1. I followed all the steps for including GoogleMaps in my project carefully, tried many different things like removing symbolic links in the downloaded package or manually linking the binaries in build phases or trying #include "GoogleMaps.h", #include "GoogleMaps/GoogleMaps.h" and "#include <GoogleMaps/GoogleMaps.h> in my bridge file, none of that worked... Finally used CocoaPods instead of including the framework myself and it worked! Hope it helps someone out there:



                                                                In the Podfile:



                                                                pod 'Google-Maps-iOS-SDK', '~> 1.9.2'



                                                                And in your Bridge file:



                                                                #import "GoogleMaps.h"







                                                                share|improve this answer












                                                                share|improve this answer



                                                                share|improve this answer










                                                                answered Mar 6 '15 at 6:57









                                                                Soheil JadidianSoheil Jadidian

                                                                730611




                                                                730611





















                                                                    0














                                                                    Delete derived data and delete Podfile.lock file and then run pod install.






                                                                    share|improve this answer



























                                                                      0














                                                                      Delete derived data and delete Podfile.lock file and then run pod install.






                                                                      share|improve this answer

























                                                                        0












                                                                        0








                                                                        0







                                                                        Delete derived data and delete Podfile.lock file and then run pod install.






                                                                        share|improve this answer













                                                                        Delete derived data and delete Podfile.lock file and then run pod install.







                                                                        share|improve this answer












                                                                        share|improve this answer



                                                                        share|improve this answer










                                                                        answered Mar 27 '17 at 11:44









                                                                        Sourabh ShekharSourabh Shekhar

                                                                        1029




                                                                        1029





















                                                                            0














                                                                            Maybe it'll be useful for anybody, next steps helped me:
                                                                            1. Delete "Headers" and "GoogleMaps" folders manually (from the Finder).
                                                                            2. Run 'pod install'
                                                                            3. Re-build the project in Xcode.






                                                                            share|improve this answer



























                                                                              0














                                                                              Maybe it'll be useful for anybody, next steps helped me:
                                                                              1. Delete "Headers" and "GoogleMaps" folders manually (from the Finder).
                                                                              2. Run 'pod install'
                                                                              3. Re-build the project in Xcode.






                                                                              share|improve this answer

























                                                                                0












                                                                                0








                                                                                0







                                                                                Maybe it'll be useful for anybody, next steps helped me:
                                                                                1. Delete "Headers" and "GoogleMaps" folders manually (from the Finder).
                                                                                2. Run 'pod install'
                                                                                3. Re-build the project in Xcode.






                                                                                share|improve this answer













                                                                                Maybe it'll be useful for anybody, next steps helped me:
                                                                                1. Delete "Headers" and "GoogleMaps" folders manually (from the Finder).
                                                                                2. Run 'pod install'
                                                                                3. Re-build the project in Xcode.







                                                                                share|improve this answer












                                                                                share|improve this answer



                                                                                share|improve this answer










                                                                                answered Mar 6 '18 at 21:00









                                                                                Petro GordiyevichPetro Gordiyevich

                                                                                18218




                                                                                18218





















                                                                                    0














                                                                                    In my case, I forgot that I need to open the workspace file with pods, not the project.






                                                                                    share|improve this answer



























                                                                                      0














                                                                                      In my case, I forgot that I need to open the workspace file with pods, not the project.






                                                                                      share|improve this answer

























                                                                                        0












                                                                                        0








                                                                                        0







                                                                                        In my case, I forgot that I need to open the workspace file with pods, not the project.






                                                                                        share|improve this answer













                                                                                        In my case, I forgot that I need to open the workspace file with pods, not the project.







                                                                                        share|improve this answer












                                                                                        share|improve this answer



                                                                                        share|improve this answer










                                                                                        answered Oct 21 '18 at 22:17









                                                                                        Rowan GontierRowan Gontier

                                                                                        124210




                                                                                        124210





















                                                                                            0














                                                                                            If you use Pods



                                                                                            Left menu > Pods > Pods > choose Framework > right menu > copy path from "ios/....."



                                                                                            My: ios/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework



                                                                                            enter image description here



                                                                                            Then Project > Build Setting > Framework Search Path > Click on



                                                                                            $(PROJECT_DIR)/ios/Pods/GoogleMaps/Maps/Frameworks/GoogleMapsCore.framework



                                                                                            enter image description here






                                                                                            share|improve this answer



























                                                                                              0














                                                                                              If you use Pods



                                                                                              Left menu > Pods > Pods > choose Framework > right menu > copy path from "ios/....."



                                                                                              My: ios/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework



                                                                                              enter image description here



                                                                                              Then Project > Build Setting > Framework Search Path > Click on



                                                                                              $(PROJECT_DIR)/ios/Pods/GoogleMaps/Maps/Frameworks/GoogleMapsCore.framework



                                                                                              enter image description here






                                                                                              share|improve this answer

























                                                                                                0












                                                                                                0








                                                                                                0







                                                                                                If you use Pods



                                                                                                Left menu > Pods > Pods > choose Framework > right menu > copy path from "ios/....."



                                                                                                My: ios/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework



                                                                                                enter image description here



                                                                                                Then Project > Build Setting > Framework Search Path > Click on



                                                                                                $(PROJECT_DIR)/ios/Pods/GoogleMaps/Maps/Frameworks/GoogleMapsCore.framework



                                                                                                enter image description here






                                                                                                share|improve this answer













                                                                                                If you use Pods



                                                                                                Left menu > Pods > Pods > choose Framework > right menu > copy path from "ios/....."



                                                                                                My: ios/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework



                                                                                                enter image description here



                                                                                                Then Project > Build Setting > Framework Search Path > Click on



                                                                                                $(PROJECT_DIR)/ios/Pods/GoogleMaps/Maps/Frameworks/GoogleMapsCore.framework



                                                                                                enter image description here







                                                                                                share|improve this answer












                                                                                                share|improve this answer



                                                                                                share|improve this answer










                                                                                                answered Nov 15 '18 at 4:24









                                                                                                Tuan NguyenTuan Nguyen

                                                                                                633616




                                                                                                633616



























                                                                                                    draft saved

                                                                                                    draft discarded
















































                                                                                                    Thanks for contributing an answer to Stack Overflow!


                                                                                                    • Please be sure to answer the question. Provide details and share your research!

                                                                                                    But avoid


                                                                                                    • Asking for help, clarification, or responding to other answers.

                                                                                                    • Making statements based on opinion; back them up with references or personal experience.

                                                                                                    To learn more, see our tips on writing great answers.




                                                                                                    draft saved


                                                                                                    draft discarded














                                                                                                    StackExchange.ready(
                                                                                                    function ()
                                                                                                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f19130629%2fframework-not-found-googlemaps-sdk-in-ios%23new-answer', 'question_page');

                                                                                                    );

                                                                                                    Post as a guest















                                                                                                    Required, but never shown





















































                                                                                                    Required, but never shown














                                                                                                    Required, but never shown












                                                                                                    Required, but never shown







                                                                                                    Required, but never shown

































                                                                                                    Required, but never shown














                                                                                                    Required, but never shown












                                                                                                    Required, but never shown







                                                                                                    Required, but never shown







                                                                                                    Popular posts from this blog

                                                                                                    Kleinkühnau

                                                                                                    Makov (Slowakei)

                                                                                                    Deutsches Schauspielhaus