Hi,
I'm not a member of the iPhone Developer Program. So to install my apps on the iPhone, I followed these steps:
1)Just edited the file
/Developer/Platforms/iPhoneOS.platform/Info.plist
and add the words in red as below
<key>NATIVE_ARCH</key>
<string>armv6</string>
<key>PLIST_FILE_OUTPUT_FORMAT</key>
<string>binary</string>
<key>PROVISIONING_PROFILE_ALLOWED</key>
<string>NO</string>
<key>PROVISIONING_PROFILE_REQUIRED</key>
<string>NO</string>
<key>SDKROOT</key>
<string>iphoneos2.2</string>
2)Installed MobileInstallation patch on my iPhone
3)Created a developer signing profile called "iPhone Developer" according to
this guide
4)Inserted into the file Info.plist in my Application the following key:
Key: SignerIdentity
Value: Apple iPhone OS Application Signing
With the iPhone SDK 2.1, these worked.
Today I updated my iPhone and the SDK to 2.2. Now when I try to Build and Go, I get an error:
"Your mobile device has encountered an unexpected error (0xE8000001). Try disconnecting and powering off the device; then power the device on and reconnect it."
In organizer console, iPhone says:
unknown afcd[a random number] <Error>: user mobile has uid 501\n
unknown afcd[the same random number] <Error>: mode is 0x41e8
I can install my app only one time successfully. If I make any changes and I want to redeploy, I'm back where I started with the 0xe8000001 error and all the rest. I delete the app manually and still get the error.
I googled but nothing worked (even if I reinstalled the iPhone SDK).
Thanks in advance
Solletichino999