Grant Isom
Grant Isom

Reputation: 150

Universal iOS app with HealthKit not showing up in iPad App Store

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

Answers (2)

Grant Isom
Grant Isom

Reputation: 150

Found that we needed to weak link HeathKit in the Link Binary With Libraries section by making the Framework "Optional".

Upvotes: 3

Wilmar
Wilmar

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.

https://developer.apple.com/library/content/documentation/General/Reference/InfoPlistKeyReference/Articles/iPhoneOSKeys.html#//apple_ref/doc/uid/TP40009252-SW3

Upvotes: 4

Related Questions