Where is this file? - reactjs

Please help find these file.
All instructions have this:
iOS
Add this line to your ios/Podfile file, then run pod install.
end
Android
Add the following lines to android/settings.gradle:
where is this File?

According to Google, The Podfile is located in the root of the Pods project. An easy way to open it is via "Open Quickly" (Shift Cmd O) typing Podfile. If it's been added to the project, you can just click on it. Otherwise, open it using the File menu or drag its icon on top of Xcode's

Related

XCode won't open any of my folders... How do i fix this

Sorry for what's probably about to be a seriously stupid question.
I'm very new to xCode, In fact I haven't even started yet. I'm more of a VSCode Stan. However I wan't to get my newly created RECO (react x Cordova) app opened on my iPhone XS MAX, I've looked online at ways to do so and so far I've learned of one solution that required me to open my VCCode application on XCode.
I cloned my repo from GitHub and saved it to my desktop before trying to open it in the XCode editor (not sure if i'm giving too much info or not, I seriously have no idea what's wrong at this point so the more the merrier).
When I tried to open the folder using the 'Open another project...' button
(Located in the bottom right of the window).
I just get this error every time
After a couple of attempts I tried opening an empty folder and I still got the same error.
MORE INFORMATION :
The folder i'm trying to open is on my desktop.
The folder clones/opens/runs perfectly in VSCode
The XCode application is located on an external 2TB seagate drive
You should open only the xcode workspace.
From your cordova directory, run this in your terminal.
open platforms/ios/WHATEVER_YOUR_PROJECT_NAME_IS.xcworkspace

How to customize eclipse clean project function?

I have a C project on Eclipse. After a successful build, I carry (cut and paste) the intermediary files (generated makefiles, object files and etc) to a specified folder by a post-build script.
When I press clean project button, the compiler does nothing normally. This is ok but my problem is how can I clean the content of my specified folder? Is there anything to be modified in order to customize clean command? Can I trigger a script when I press this button? Any other solutions exist?
Open your .cproject in text editor. Search for cleanCommand=. Once found, edit the command in quotes.

Import existing file or directory into intellij idea project

I'm using Intellij Idea 15.0.3. I tried to use it to develop a MEAN stack application.
I first File -> New -> Project -> Empty Project to create an empty project. Then in Intellij Idea's terminal I type npm init -y, a package.json is generated. However, when I tried to edit this generated package.json, a window pops up, saying: These files do not belong to the project, and asks me if I want to edit it anyway.
Also, after I edited the package.json, I run npm install in the terminal, a new directory node_modules is generated, but it's not shown in the Intellij Idea.
How can I add package.json and node_modules into project? Do I have to manually created file or folder through Intellij Idea project UI and give up using its terminal?
You need to create a new project from existing source so..
File->New Project - Select HTML5/Javascript application then select one of the options at the bottom with "Existing Sources" at the end of it, you then just specify the folder that it's already and in and you should be good to go.

Ionic build iOS deletes changes

I have a file here:
/Users/myName/Desktop/KMtoMiles/platforms/ios/www/js/app.js
I make a change to the file using Xcode. Then I click save changes and exit Xcode. If I immediately re-enter Xcode, I can see my change is there.
Then I do the following:
myNameMBP:Desktop myName$ pwd
/Users/myName/Desktop
myNameMBP:Desktop myName$ ls
KMtoMiles
myNameMBP:Desktop myName$ cd KMtoMiles/
myNameMBP:KMtoMiles myName$ ionic build ios
Now when I open Xcode and go to app.js, my changes are no longer there.
I have had issues with permissions. I ended up just making it wide open and doing chmod -R 777 KMtoMiles and it appears the permissions may be changing when I do a build.
Has anyone experienced this too?
Ionic build iOS project automatically from the existing source, so If you need to modify any f your files go to the source and modify files there then build iOS you will get the files changed within Xcode.
-- EDIT --
So you need to edit the source files first before building your project, don't edit files directly on xcode as ionic build ios command will ignore your edits and replace files with the source files.

Eclipse Project Settings Not Transferring to New Project

I have the source from an Eclipse project, and I need to import all of the build settings as well as the source into a new project so I can make some changes. The trouble is, when I go to build the project, Eclipse is calling the internal builder and NOT calling the Makefile from the previous project (which I have imported). The makefile contains some values in #define statements that need to be passed in on the command line.
When I go to change these options in Eclipse (by right clicking on the project and going down to "Properties" and then examining the "C/C++ Build" tab) they are grayed out!
If someone could help me out I'd greatly appreciate it.
Thanks all!
There is a folder called ".settings" under your project, copy this (and everything under it) to your new project, this is where all of the settings are stored. To see the folder, you may need to use the view menu (upside down triangle) in the Package or Project Explorer and remove the filter on the ".resources". For Package Explorer select the "Filters", in Project Explorer use "Customize View"

Resources