Reputation: 150
We have an iOS application that uses healthkit but we handle all cases of it gracefully for our iPad Application. After a successful submission we are not able to download it from the App Store directly on an iPad, but we can download it through iTunes. Is there something we need to do to make it appear on the iPad's App Store as well?
Upvotes: 2
Views: 498
Reputation: 150
Found that we needed to weak link HeathKit in the Link Binary With Libraries section by making the Framework "Optional".
Upvotes: 3
Reputation: 1471
Does you plist contain healthkit
under the required device capabilities? If it does, I'm guessing it won't show up on the iPad on the store, since the device doesn't fulfill the requirements. Downloading through iTunes won't filter out apps based on the requirements.
The fix would be to remove healthkit
from the required capabilities and resubmit. The app should show up in the store for iPad then.
Upvotes: 4