iPhone App Minus App Store? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T01:35:06Zhttp://stackoverflow.com/feeds/question/37464http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/37464/iphone-app-minus-app-store22iPhone App Minus App Store?Dan Walker2008-09-01T04:55:58Z2008-12-01T22:13:49Z
<p>I've been looking into iPhone development, but I've been having problems coming up with the answer to a certain question.</p>
<p>If I create an application on my Mac, is there any way I can get it to run on an iPhone without going through the app store?</p>
<p>It doesn't matter if the iPhone has to be jailbroken, as long as I can still run an application created using the official SDK. For reasons I won't get into, I can't have this program going through the app store.</p>
<p>Thanks for any help you can give!</p>
http://stackoverflow.com/questions/37464/iphone-app-minus-app-store/37476#374765Answer by Robert Höglund for iPhone App Minus App Store?Robert Höglund2008-09-01T05:16:40Z2008-09-01T05:16:40Z<p>Yes, Once you have joined the iPhone Developer Program,and paid Apple $99, you can transfer your application to up to 100 iPhones or iPod touches. </p>
http://stackoverflow.com/questions/37464/iphone-app-minus-app-store/37522#3752234Answer by Jason Weathered for iPhone App Minus App Store?Jason Weathered2008-09-01T06:21:23Z2008-10-07T21:09:02Z<p>For a standard iPhone you'll need to pay the US$99/yr to be a member of the developer program. You can then use the adhoc system to install your application onto up to 100 devices. The developer program has the details but it involves adding UUIDs for each of the devices to your application package. UUIDs can be easiest retrieved using <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=285691333&mt=8" rel="nofollow">Ad Hoc Helper</a> available from the App Store. For further details on this method, see Craig Hockenberry's <a href="http://furbo.org/2008/08/06/beta-testing-on-iphone-20/" rel="nofollow">Beta testing on iPhone 2.0</a> article</p>
<p>For jailbroken iPhones, you can use the following method which I have personally tested using the <a href="http://developer.apple.com/iphone/library/samplecode/AccelerometerGraph/index.html" rel="nofollow">AccelerometerGraph</a> sample app on both iPhone OS 2.0.2 and iPhone OS 2.1.</p>
<p>The following steps require <code>openssh</code>, <code>ldid</code> and <code>com.bigboss.respring</code> to be installed first. Replace <code>jasoniphone.local</code> with the hostname of the target device. Be sure to set your own password on both the <code>mobile</code> and <code>root</code> users after installing SSH.</p>
<ol>
<li><p>Project, Set Active SDK, Device</p></li>
<li><p>Compile your project normally (using Build, not Build & Go).</p></li>
<li><p>In the build/Release-iphoneos directory you will have an app bundle. Use your preferred method to transfer this to /Applications on the device.</p>
<blockquote>
<p><code>scp -r AccelerometerGraph.app root@jasoniphone:/Applications/</code></p>
</blockquote></li>
<li><p>SSH to the phone and fake sign the executable binary:</p>
<blockquote>
<p><code>ssh root@jasoniphone.local ldid -S /Applications/AccelerometerGraph.app/AccelerometerGraph</code></p>
</blockquote></li>
<li><p>Let SpringBoard know the new application has been installed. Either run Respring from the SpringBoard or issue the following command:</p>
<blockquote>
<p><code>ssh root@jasoniphone.local /Applications/Respring.app/respring</code></p>
</blockquote>
<p>This only has to be done when you add or remove applications. Updated applications just need to be relaunched.</p></li>
</ol>
<p>To make life easier for yourself during development, you can setup SSH key authentication and add these extra steps as a custom build step in your project.</p>
<p>Note that if you wish to remove the application later you cannot do so via the standard SpringBoard interface and you'll need to use SSH and Respring after:</p>
<blockquote>
<p><code>ssh root@jasoniphone.local 'rm -r /Applications/AccelerometerGraph.app && /Applications/Respring.app/respring'</code></p>
</blockquote>
http://stackoverflow.com/questions/37464/iphone-app-minus-app-store/251262#251262-1Answer by DFG for iPhone App Minus App Store?DFG2008-10-30T18:36:09Z2008-10-30T18:36:09Z<p>OK, I made those steps but, when I run the application on the iPhone it start, shows the Default.png screen and then is close suddenly (I try this with my application and with UICatalog app).</p>
http://stackoverflow.com/questions/37464/iphone-app-minus-app-store/305082#3050820Answer by hemali mojidra for iPhone App Minus App Store?hemali mojidra2008-11-20T12:07:01Z2008-11-20T12:07:01Z<p>i have same problem..
Is there any one who has this certificate and working application on iphone?
If yes than i want the procedure for this.</p>
http://stackoverflow.com/questions/37464/iphone-app-minus-app-store/305227#3052270Answer by August for iPhone App Minus App Store?August2008-11-20T13:02:38Z2008-11-20T13:02:38Z<p>It's worth noting that if you go the jailbroken route, it's possible (likely?) that an iPhone OS update would kill your ability to run these apps. I'd go the official route and pay the $99 to get authorized. In addition to not having to worry about your apps being clobbered, you also get the opportunity (should you choose) to release your apps on the store.</p>
http://stackoverflow.com/questions/37464/iphone-app-minus-app-store/332435#3324352Answer by Nick for iPhone App Minus App Store?Nick2008-12-01T22:13:49Z2008-12-01T22:13:49Z<p><a href="http://www.mikeash.com/?page=pyblog/the-iphone-development-story.html" rel="nofollow">
one person's story of getting an app on the iphone</a></p>