iOS app reject because of healthkit
Asked Answered
N

4

10

I am using HealthKit in my app to read users daily steps data and for that I enable HealthKit in my app.

I uploaded app without NSHealthShareUsageDescription and NSHealthUpdateUsageDescription key in info.plist.

Apple rejected the app as follow and says this both key must be in info.plist.

NSHealthUpdateUsageDescription - Read your daily steps data for calorie count data

NSHealthShareUsageDescription - Share workout data with apps.

I added that key and upload again.

now app rejected with this reason.

Design - 4.2.1 Your app uses the HealthKit or CareKit APIs but does not indicate integration with the Health app in your Application.

any idea how can I approve it?

Nature answered 27/9, 2016 at 5:48 Comment(5)
you should reply to Apple and explain the integration how your app integrates withHealthKit.Aromaticity
Are you using the current version or a later version of health kit. Try taking it out and then putting it back into the system. And resubmit itLucubration
okey i'll try it.Nature
why down vote? please mention reasonNature
Hey, what was the final solution? Because when I read to read users daily steps data it seems you're only reading the data so you only need the NSHealthShareUsageDescription key, not the NSHealthUpdateUsageDescription one. And that would be the reason why you got rejected.Culverin
E
4

From the App Store Review Guidelines

4.2.1 Apps should use APIs and frameworks for their intended purposes and indicate that integration in their app description. For example, the HomeKit framework should provide home automation services; and HealthKit should be used for health and fitness purposes and integrate with the Health app.

It sounds to me that Apple have looked at your app and for some reason, it looks to them as if you're not actually using the step data for anything useful to the user. Does your app actually use the step data and present it back to the user in any meaningful way?

The only other thing I think they might mean is that they don't like the wording you chose for NSHealthShareUsageDescription/NSHealthUpdateUsageDescription (you're supposed to clearly state the purpose why your app needs access to health data).

Edit: Another thought, perhaps your app description doesn't mention that it's an app that uses healthkit/step data.

Elliotelliott answered 27/9, 2016 at 6:5 Comment(6)
i am using steps data to calculate calorie burned.Nature
Does your AppStore description explain that you use HealthKit. e.g. Look at itunes.apple.com/gb/app/fitport-fitness-dashboard/… Also, could you post your NSHealthShareUsageDescription/NSHealthUpdateUsageDescription strings (in your question)?Elliotelliott
key description is - NSHealthUpdateUsageDescription - Read your daily steps data for calorie count data. NSHealthShareUsageDescription - Share workout data with apps.Nature
And does your AppStore description detail your use of HealthKit?Elliotelliott
no. i don't have description in AppStore. But apple says Your app uses the HealthKit or CareKit APIs but does not indicate integration Does it mean with AppStore Description? i don't think because then it mention about description.Nature
That's almost certainly it then. The first line of the guideline I quoted in my answer (the guideline you were rejected on) says apps must "indicate that integration in their app description". Although I agree that Apple could certainly have been clearer in their rejection notice.Elliotelliott
G
4

I recently had the same issue and found the solution.

I was able to pass the review with clearly stating “this app integrates with the Health app” in the app description of App Store Connect. That was a weird case cuz the rejection caused the meta data and seems like I didn't have to revise my app any more although the review status was "Binary Rejected".

Goodsell answered 12/10, 2018 at 10:28 Comment(0)
I
3

just update your app description on the AppStore to indicate your app integrates with apple health app (HealthKit) and why it used (purpose). for example add to your app description something like : we integrate with the health app (HealthKit) to read and track your steps data and show them in a beautiful way.

Interstellar answered 15/3, 2019 at 17:16 Comment(0)
A
0

Got rejected thrice because of this before being accepted. Here is what I was doing wrong:

I only had HealthKit Capability for my Debug Profile. Make sure that you have HealthKit Capability enabled for your Release Profile as well or just add it for "All" enter image description here

I usually have different Xcode signing profiles for development, testing and production. Make sure that you choose the correct signing profile when submitting your app for review. Verify the capabilities added to each profile from Apple Developer > Certificates, Identifiers, Profiles > Profiles > Capabilities

Moreover, I added app screenshots showing how health data was used to the app store screenshot section - since they mention in the review that you need to have indicators in the User Interface as well to indicate HealthKit integration. I also updated the app description to say that my app integrates with the Apple Health App.

Aronoff answered 1/5, 2022 at 12:42 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.