Where is Xcode Project in React Native?












0















I am trying to find my Xcode project file inside React Native so I can setup React Native Firebase (https://rnfirebase.io/docs/v5.x.x/installation/ios)



However, I cannot find where the Xcode project file is? Can anyone help.










share|improve this question

























  • I'm not sure if it works but did you search your project in spotlight?

    – TheTiger
    Jan 3 at 12:38


















0















I am trying to find my Xcode project file inside React Native so I can setup React Native Firebase (https://rnfirebase.io/docs/v5.x.x/installation/ios)



However, I cannot find where the Xcode project file is? Can anyone help.










share|improve this question

























  • I'm not sure if it works but did you search your project in spotlight?

    – TheTiger
    Jan 3 at 12:38
















0












0








0








I am trying to find my Xcode project file inside React Native so I can setup React Native Firebase (https://rnfirebase.io/docs/v5.x.x/installation/ios)



However, I cannot find where the Xcode project file is? Can anyone help.










share|improve this question
















I am trying to find my Xcode project file inside React Native so I can setup React Native Firebase (https://rnfirebase.io/docs/v5.x.x/installation/ios)



However, I cannot find where the Xcode project file is? Can anyone help.







ios firebase react-native expo react-native-firebase






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jan 3 at 15:21









Mohammad Ansari

1131315




1131315










asked Jan 3 at 12:34









Man JamesMan James

115




115













  • I'm not sure if it works but did you search your project in spotlight?

    – TheTiger
    Jan 3 at 12:38





















  • I'm not sure if it works but did you search your project in spotlight?

    – TheTiger
    Jan 3 at 12:38



















I'm not sure if it works but did you search your project in spotlight?

– TheTiger
Jan 3 at 12:38







I'm not sure if it works but did you search your project in spotlight?

– TheTiger
Jan 3 at 12:38














4 Answers
4






active

oldest

votes


















0














You can find Xcode project files here:



yourProjectDir/ios/yourprojectname.xcodeproj


If You use cocoapods then you should always use this file:



yourProjectDir/ios/yourprojectname.xcworkspace





share|improve this answer
























  • Doesn't seem to have an iOS folder, I used the createapp method?

    – Man James
    Jan 3 at 12:55











  • If You used expo then you need to eject your app. Read more here: docs.expo.io/versions/latest/expokit/eject

    – Paweł Mikołajczuk
    Jan 3 at 12:57











  • create-react-native-app is now EXPO and You need to eject app to work with native code.

    – Paweł Mikołajczuk
    Jan 3 at 13:53



















0














YourRNProject/ios and there you have it inside!






share|improve this answer































    0














    Open your react native folder



    you can see ios folder



    this folder is what you search for






    share|improve this answer
























    • Doesn't seem to have an iOS folder, I used the createapp method?

      – Man James
      Jan 3 at 12:54











    • @ManJames I understand your issue , you use expo for your project

      – Mohammad Ansari
      Jan 3 at 14:05











    • @ManJames you must use native way of creating project

      – Mohammad Ansari
      Jan 3 at 14:05











    • @ManJames goto facebook.github.io/react-native/docs/getting-started and read docs on Build projects with native code

      – Mohammad Ansari
      Jan 3 at 14:06











    • @ManJames Or you can eject your expo project but first read documentation and prepare your system for native development Android Studio and Xcode

      – Mohammad Ansari
      Jan 3 at 14:08





















    0














    If you use Expo or create react native app you will not have an iOS folder as these are abstracted away from you.



    If you wish to use a dependency that requires you to edit native code then you need to eject your application. https://docs.expo.io/versions/latest/expokit/eject



    From your command line run expo eject and it will build the necessary ios and android folders for you. However there are several ramifications if you eject your app. You should read the above link carefully.






    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%2f54022403%2fwhere-is-xcode-project-in-react-native%23new-answer', 'question_page');
      }
      );

      Post as a guest















      Required, but never shown

























      4 Answers
      4






      active

      oldest

      votes








      4 Answers
      4






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      0














      You can find Xcode project files here:



      yourProjectDir/ios/yourprojectname.xcodeproj


      If You use cocoapods then you should always use this file:



      yourProjectDir/ios/yourprojectname.xcworkspace





      share|improve this answer
























      • Doesn't seem to have an iOS folder, I used the createapp method?

        – Man James
        Jan 3 at 12:55











      • If You used expo then you need to eject your app. Read more here: docs.expo.io/versions/latest/expokit/eject

        – Paweł Mikołajczuk
        Jan 3 at 12:57











      • create-react-native-app is now EXPO and You need to eject app to work with native code.

        – Paweł Mikołajczuk
        Jan 3 at 13:53
















      0














      You can find Xcode project files here:



      yourProjectDir/ios/yourprojectname.xcodeproj


      If You use cocoapods then you should always use this file:



      yourProjectDir/ios/yourprojectname.xcworkspace





      share|improve this answer
























      • Doesn't seem to have an iOS folder, I used the createapp method?

        – Man James
        Jan 3 at 12:55











      • If You used expo then you need to eject your app. Read more here: docs.expo.io/versions/latest/expokit/eject

        – Paweł Mikołajczuk
        Jan 3 at 12:57











      • create-react-native-app is now EXPO and You need to eject app to work with native code.

        – Paweł Mikołajczuk
        Jan 3 at 13:53














      0












      0








      0







      You can find Xcode project files here:



      yourProjectDir/ios/yourprojectname.xcodeproj


      If You use cocoapods then you should always use this file:



      yourProjectDir/ios/yourprojectname.xcworkspace





      share|improve this answer













      You can find Xcode project files here:



      yourProjectDir/ios/yourprojectname.xcodeproj


      If You use cocoapods then you should always use this file:



      yourProjectDir/ios/yourprojectname.xcworkspace






      share|improve this answer












      share|improve this answer



      share|improve this answer










      answered Jan 3 at 12:51









      Paweł MikołajczukPaweł Mikołajczuk

      3,0891929




      3,0891929













      • Doesn't seem to have an iOS folder, I used the createapp method?

        – Man James
        Jan 3 at 12:55











      • If You used expo then you need to eject your app. Read more here: docs.expo.io/versions/latest/expokit/eject

        – Paweł Mikołajczuk
        Jan 3 at 12:57











      • create-react-native-app is now EXPO and You need to eject app to work with native code.

        – Paweł Mikołajczuk
        Jan 3 at 13:53



















      • Doesn't seem to have an iOS folder, I used the createapp method?

        – Man James
        Jan 3 at 12:55











      • If You used expo then you need to eject your app. Read more here: docs.expo.io/versions/latest/expokit/eject

        – Paweł Mikołajczuk
        Jan 3 at 12:57











      • create-react-native-app is now EXPO and You need to eject app to work with native code.

        – Paweł Mikołajczuk
        Jan 3 at 13:53

















      Doesn't seem to have an iOS folder, I used the createapp method?

      – Man James
      Jan 3 at 12:55





      Doesn't seem to have an iOS folder, I used the createapp method?

      – Man James
      Jan 3 at 12:55













      If You used expo then you need to eject your app. Read more here: docs.expo.io/versions/latest/expokit/eject

      – Paweł Mikołajczuk
      Jan 3 at 12:57





      If You used expo then you need to eject your app. Read more here: docs.expo.io/versions/latest/expokit/eject

      – Paweł Mikołajczuk
      Jan 3 at 12:57













      create-react-native-app is now EXPO and You need to eject app to work with native code.

      – Paweł Mikołajczuk
      Jan 3 at 13:53





      create-react-native-app is now EXPO and You need to eject app to work with native code.

      – Paweł Mikołajczuk
      Jan 3 at 13:53













      0














      YourRNProject/ios and there you have it inside!






      share|improve this answer




























        0














        YourRNProject/ios and there you have it inside!






        share|improve this answer


























          0












          0








          0







          YourRNProject/ios and there you have it inside!






          share|improve this answer













          YourRNProject/ios and there you have it inside!







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Jan 3 at 12:37









          Mtg Kha JeskaiMtg Kha Jeskai

          7251725




          7251725























              0














              Open your react native folder



              you can see ios folder



              this folder is what you search for






              share|improve this answer
























              • Doesn't seem to have an iOS folder, I used the createapp method?

                – Man James
                Jan 3 at 12:54











              • @ManJames I understand your issue , you use expo for your project

                – Mohammad Ansari
                Jan 3 at 14:05











              • @ManJames you must use native way of creating project

                – Mohammad Ansari
                Jan 3 at 14:05











              • @ManJames goto facebook.github.io/react-native/docs/getting-started and read docs on Build projects with native code

                – Mohammad Ansari
                Jan 3 at 14:06











              • @ManJames Or you can eject your expo project but first read documentation and prepare your system for native development Android Studio and Xcode

                – Mohammad Ansari
                Jan 3 at 14:08


















              0














              Open your react native folder



              you can see ios folder



              this folder is what you search for






              share|improve this answer
























              • Doesn't seem to have an iOS folder, I used the createapp method?

                – Man James
                Jan 3 at 12:54











              • @ManJames I understand your issue , you use expo for your project

                – Mohammad Ansari
                Jan 3 at 14:05











              • @ManJames you must use native way of creating project

                – Mohammad Ansari
                Jan 3 at 14:05











              • @ManJames goto facebook.github.io/react-native/docs/getting-started and read docs on Build projects with native code

                – Mohammad Ansari
                Jan 3 at 14:06











              • @ManJames Or you can eject your expo project but first read documentation and prepare your system for native development Android Studio and Xcode

                – Mohammad Ansari
                Jan 3 at 14:08
















              0












              0








              0







              Open your react native folder



              you can see ios folder



              this folder is what you search for






              share|improve this answer













              Open your react native folder



              you can see ios folder



              this folder is what you search for







              share|improve this answer












              share|improve this answer



              share|improve this answer










              answered Jan 3 at 12:38









              Mohammad AnsariMohammad Ansari

              1131315




              1131315













              • Doesn't seem to have an iOS folder, I used the createapp method?

                – Man James
                Jan 3 at 12:54











              • @ManJames I understand your issue , you use expo for your project

                – Mohammad Ansari
                Jan 3 at 14:05











              • @ManJames you must use native way of creating project

                – Mohammad Ansari
                Jan 3 at 14:05











              • @ManJames goto facebook.github.io/react-native/docs/getting-started and read docs on Build projects with native code

                – Mohammad Ansari
                Jan 3 at 14:06











              • @ManJames Or you can eject your expo project but first read documentation and prepare your system for native development Android Studio and Xcode

                – Mohammad Ansari
                Jan 3 at 14:08





















              • Doesn't seem to have an iOS folder, I used the createapp method?

                – Man James
                Jan 3 at 12:54











              • @ManJames I understand your issue , you use expo for your project

                – Mohammad Ansari
                Jan 3 at 14:05











              • @ManJames you must use native way of creating project

                – Mohammad Ansari
                Jan 3 at 14:05











              • @ManJames goto facebook.github.io/react-native/docs/getting-started and read docs on Build projects with native code

                – Mohammad Ansari
                Jan 3 at 14:06











              • @ManJames Or you can eject your expo project but first read documentation and prepare your system for native development Android Studio and Xcode

                – Mohammad Ansari
                Jan 3 at 14:08



















              Doesn't seem to have an iOS folder, I used the createapp method?

              – Man James
              Jan 3 at 12:54





              Doesn't seem to have an iOS folder, I used the createapp method?

              – Man James
              Jan 3 at 12:54













              @ManJames I understand your issue , you use expo for your project

              – Mohammad Ansari
              Jan 3 at 14:05





              @ManJames I understand your issue , you use expo for your project

              – Mohammad Ansari
              Jan 3 at 14:05













              @ManJames you must use native way of creating project

              – Mohammad Ansari
              Jan 3 at 14:05





              @ManJames you must use native way of creating project

              – Mohammad Ansari
              Jan 3 at 14:05













              @ManJames goto facebook.github.io/react-native/docs/getting-started and read docs on Build projects with native code

              – Mohammad Ansari
              Jan 3 at 14:06





              @ManJames goto facebook.github.io/react-native/docs/getting-started and read docs on Build projects with native code

              – Mohammad Ansari
              Jan 3 at 14:06













              @ManJames Or you can eject your expo project but first read documentation and prepare your system for native development Android Studio and Xcode

              – Mohammad Ansari
              Jan 3 at 14:08







              @ManJames Or you can eject your expo project but first read documentation and prepare your system for native development Android Studio and Xcode

              – Mohammad Ansari
              Jan 3 at 14:08













              0














              If you use Expo or create react native app you will not have an iOS folder as these are abstracted away from you.



              If you wish to use a dependency that requires you to edit native code then you need to eject your application. https://docs.expo.io/versions/latest/expokit/eject



              From your command line run expo eject and it will build the necessary ios and android folders for you. However there are several ramifications if you eject your app. You should read the above link carefully.






              share|improve this answer




























                0














                If you use Expo or create react native app you will not have an iOS folder as these are abstracted away from you.



                If you wish to use a dependency that requires you to edit native code then you need to eject your application. https://docs.expo.io/versions/latest/expokit/eject



                From your command line run expo eject and it will build the necessary ios and android folders for you. However there are several ramifications if you eject your app. You should read the above link carefully.






                share|improve this answer


























                  0












                  0








                  0







                  If you use Expo or create react native app you will not have an iOS folder as these are abstracted away from you.



                  If you wish to use a dependency that requires you to edit native code then you need to eject your application. https://docs.expo.io/versions/latest/expokit/eject



                  From your command line run expo eject and it will build the necessary ios and android folders for you. However there are several ramifications if you eject your app. You should read the above link carefully.






                  share|improve this answer













                  If you use Expo or create react native app you will not have an iOS folder as these are abstracted away from you.



                  If you wish to use a dependency that requires you to edit native code then you need to eject your application. https://docs.expo.io/versions/latest/expokit/eject



                  From your command line run expo eject and it will build the necessary ios and android folders for you. However there are several ramifications if you eject your app. You should read the above link carefully.







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Jan 3 at 14:00









                  AndrewAndrew

                  6,60741528




                  6,60741528






























                      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%2f54022403%2fwhere-is-xcode-project-in-react-native%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

                      Mossoró

                      Error while reading .h5 file using the rhdf5 package in R

                      Pushsharp Apns notification error: 'InvalidToken'