Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Test app on iPhone without paying $99 to Apple [closed]

I developed an app for iPhone with Xcode 3.2.4 and iOS 4.1. Now I want to test my app on my iPhone, but I don't want to enroll for a developer program. I searched in google and found a lot of tutorials, but they are not working.
Then I asked me if it is because I use iOS 4.1. Is there a way to test the app?
I've a jailbroken iPhone 4 with iOS 4.1.

like image 848
Paul Warkentin Avatar asked Oct 26 '10 14:10

Paul Warkentin


1 Answers

First, you need to install SSH to your device to be able to copy files via scp.

Build your application and grab the binary from your build directory. Copy it to the device's /Applications folder using scp. Change the permissions to 755 recursively using chmod -R 755 ApplicationName.app, reboot your iPhone.

And I strongly encourage you to enroll in the Developer Program and pay Apple for the work they have done in creating this great SDK.

like image 106
Björn Marschollek Avatar answered Sep 21 '22 09:09

Björn Marschollek