Hi i have created a xcode project. Now i want to give .app file to my friend to use that application. From where i get this file. How to install this .app file in his Applications folder using installer package?
+2
A:
Build a release version, and the .app file is under build/Release folder of your project. Just copy it to Applications folder of your friend's machine. I don't think you need to build a installer.
Iamamac
2009-12-31 09:54:01
i need to install some supporting components with that .app file. Thats why i have created installer package. but that install every thing except .app file. How to install that .app file? I got that accetpted mark.
Shakti
2009-12-31 10:40:07
A:
The application will appear in your projects Build directory. In the source pane on the left of the Xcode window you should see a section called 'Products'. Listed under there will be your application name. If you right-click on this you can select 'Reveal in Finder' to be taken to the application in the Finder. You can send this to your friend directly and he can just copy it into his Applications folder. Most applications do not require an installer package on Mac OS X.
mikecsh
2009-12-31 09:57:15