Mr.G
Mr.G

Reputation: 1275

Cannot install .ipa created from Xcode 4.5

I'm developing my application in xcode 4.5 and i want to create the .ipa file to transfer the project in to client's device. But unfortunately I can't install it in device. Giving a pop up says "Cannot install".

i have created the ipa and installed it from xcode 4.0.2. So i know the process. I thinks i have given correct provisionning profile too. Is there any reason or anyone can give me a tutorial on this in xcode 4.5?

Upvotes: 1

Views: 1688

Answers (4)

Mr.G
Mr.G

Reputation: 1275

for replies. i found the solution in entitlements.plist file thr is a property called get-task-allow. i had to set it to NO. Tht wat happed with xcode 4.5.

Thank you

Upvotes: 1

TomSwift
TomSwift

Reputation: 39502

What do you see in the Xcode Organizer console for the device as you perform the install? There is likely an error message in the console that will give you a clue.

Are there any unsafe characters in the .ipa filename? I had a case once where iTunes was installing the app and changing the .ipa filename to be the app name. Well, the app name had a '/' in it, and that doesn't work so well in filenames. The console showed me the error as it occurred.

If you aren't installing with the device connected to Xcode, you can use the iPhone Configuration Utility to watch/record the console on a remote machine.

Upvotes: 0

Abizern
Abizern

Reputation: 150715

Did you build the app with an ad-hoc distribution profile that includes the client's device UDID?

Alteratively, use Testflight which works extremely well for this sort of thing.

Upvotes: 1

lostInTransit
lostInTransit

Reputation: 71047

Assuming the ipa is correct, is the client's device running an OS supported by the ipa (check deployment target of your project)?

Upvotes: 0

Related Questions