Play 管理中心错误:您需要获得批准才能在您的应用中使用以下 Health Connect 权限

6 javascript xcode react-native google-play-console healthconnect

我正在使用react-native-health-connect包从设备获取用户健康信息。一切正常,我正在获取用户的健康信息并显示它。

我已在AndroidMenifest.json文件中授予以下获取数据的权限。

 <uses-permission android:name="android.permission.health.READ_ACTIVE_CALORIES_BURNED"/>
<uses-permission android:name="android.permission.health.READ_TOTAL_CALORIES_BURNED"/>
<uses-permission android:name="android.permission.health.READ_WEIGHT"/>
<uses-permission android:name="android.permission.health.READ_HEIGHT"/>
<uses-permission android:name="android.permission.health.READ_STEPS"/>
<uses-permission android:name="android.permission.health.READ_HEART_RATE"/>
<uses-permission android:name="android.permission.health.READ_LEAN_BODY_MASS"/>
<uses-permission android:name="android.permission.health.READ_BONE_MASS"/>
<uses-permission android:name="android.permission.health.READ_BODY_FAT"/>
Run Code Online (Sandbox Code Playgroud)

现在我正在上传更新到 Play 商店,它给了我以下错误 在此输入图像描述

我已经查看了常见问题解答,但我不明白我应该做什么来解决这个问题。

谢谢

小智 1

终于问题解决了...

首先,正如他们在错误消息中提到的“您需要获得批准才能在您的应用程序中使用以下 Health Connect 权限。”,我已通过填写Google Health Connect API 请求表来请求访问权限。

什么问题:

我没有在我的隐私政策中提到健康连接数据类型的使用。然后我提到了,但是这个信息并没有向用户解释完整的用途。

因此,我更改了隐私政策,如下所示并回复了他们。

政策内容:

Health Connect Data

a. Collection and Usage of Health Data:
We value the privacy and security of our users. Our mobile application requests access to health-related permissions, specifically the ability to read steps and sleep information. This data is collected for the sole purpose of enhancing the user experience and providing features related to health and fitness.

b. Purpose of Health Data Access:
Our app utilizes health-related permissions to track daily steps, and sleep patterns. This data is processed locally on the user's device and is not shared with any third parties.

c. User Consent:
By using our app, you explicitly consent to the collection and usage of health-related data for the purposes outlined in this privacy policy. You have the option to grant or deny these permissions within the app settings.

d. Security Measures:
We implement robust security measures to protect the confidentiality and integrity of health-related data. This includes encryption and secure storage.

e. Data Retention:
We retain health-related data only for as long as necessary to fulfill the purposes outlined in this privacy policy. Users can request the deletion of their data by 

f. Third-Party Services:
Our app does not share health-related data with any third-party services, advertisers, or external entities. We do not engage in the sale or exchange of user data.
Run Code Online (Sandbox Code Playgroud)

笔记:

  • 他们需要 7-10 个工作日来审核Google Health Connect API Request表格,然后发送一封包含批准或拒绝信息的电子邮件,并附有详细信息。如果被拒绝,您可以在帖子中回复。
  • 获得批准后,他们需要 5 个工作日才能在 Play Store 版本中启用 Google Health Connect 数据类型。