Reputation: 165
I am able to run my application on iPhone 6 iOS 9
, if I deploy it from xcode
, Or if I put the .ipa
of application in Organizer->device
.
But if I download it from Cick Here, it is giving alert Unable to download '<app name>'
at this time.
I checked the plist. bundle identifier is same as ipa. What will be the solution? For iOS 9 is their any other settings need to be done in plist? What is the standard format of plist for iOS 9?
Upvotes: 4
Views: 5815
Reputation: 1005
Had similar issue earlier, solved it by updating the manifest plist file, i.e. plist file which contains url for ipa. Earlier I used to update only the URL for ipa in assets, but now apple we have to update the metadata as well. for example, 'bundle-version', 'bundle-identifier', 'title', 'subtitle' & 'kind'.
Key kind should always be software.
Upvotes: 2