New in iPhone Development? You can now follow this blog on google readers or subscribe for email or Twitter!
If my tutorial help you then please donate, so that i continue writing free tutorials for every developer/programmer/freelancer
If my tutorial help you then please donate, so that i continue writing free tutorials for every developer/programmer/freelancer
I was helping my friend to install application on his jailbreak iPhone. It took me some time to understand the issue. Actually he have two issues, one was understanding what to do to make a build and second how to install build to his iPhone.
How to make a build for iPhone, is a question people ask me a lot and to me a build for iPhone or Apple store is the simplest thing. I already write so many blog entry how to make a build for apple store or for your iPhone (Just look in to old entry in this blog).
Next point is when you are installing build on your iPhone, there are many error you came across, I will be writing every error here. So today I came to know about “Error launching remote program: security policy error”. Its solution is very simple
1. Open info.plist (inside Resources folder, i.e Projectname-Info.plist) in your xcode project in plain text (right click on plist and select “Open As” and then select “Plain Text File”). Before </dict> tag write
<key>SignerIdentity</key>
<string>Apple iPhone OS Application Signing</string>
2. Now go to your iPhone (Settings -> General -> Profiles) and find the provisioning profile you are using to install the application. You will see that you have two such files, so remove the old one
Now try to install the build on your iPhone, it should work by now
Popularity: 13% [?]
Related posts:
- Bypass Code Signature & Published Your Application on Cydia Published iPhone Application On Cydia. Build your application for jail...
- Basic Questions before You start iPhone Development One person from India asked me few question for iPhone...
- List/Guideline for submitting iPhone Application to Apple Store Creating Certificate for your application and then make provisioning profile...
- List/Guideline for creating Ad Hoc/Distribution Build for iPhone Tutorial to help you create Ad Hoc build for your...
- Tutorial – Same Xcode Project Create Multiple Products for iPhone Some times you need to create two version of...