Where is Xcode Project in React Native?
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
add a comment |
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
I'm not sure if it works but did you search your project in spotlight?
– TheTiger
Jan 3 at 12:38
add a comment |
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
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
ios firebase react-native expo react-native-firebase
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
add a comment |
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
add a comment |
4 Answers
4
active
oldest
votes
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
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
add a comment |
YourRNProject/ios and there you have it inside!
add a comment |
Open your react native folder
you can see ios folder
this folder is what you search for
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
add a comment |
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.
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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
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
add a comment |
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
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
add a comment |
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
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
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
add a comment |
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
add a comment |
YourRNProject/ios and there you have it inside!
add a comment |
YourRNProject/ios and there you have it inside!
add a comment |
YourRNProject/ios and there you have it inside!
YourRNProject/ios and there you have it inside!
answered Jan 3 at 12:37
Mtg Kha JeskaiMtg Kha Jeskai
7251725
7251725
add a comment |
add a comment |
Open your react native folder
you can see ios folder
this folder is what you search for
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
add a comment |
Open your react native folder
you can see ios folder
this folder is what you search for
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
add a comment |
Open your react native folder
you can see ios folder
this folder is what you search for
Open your react native folder
you can see ios folder
this folder is what you search for
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
add a comment |
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
add a comment |
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.
add a comment |
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.
add a comment |
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.
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.
answered Jan 3 at 14:00
AndrewAndrew
6,60741528
6,60741528
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
I'm not sure if it works but did you search your project in spotlight?
– TheTiger
Jan 3 at 12:38