iOS-Motion使用权限

时间:2018-10-24 19:15:18

标签: here-api

我正在使用iOS的HereMaps 3.8.0。在启动应用程序时,我可以看到该应用程序要求提供预期的位置服务许可,但同时它也在请求“运动使用许可”。请让我知道为什么HereMaps正在寻找“运动使用”权限,以及运动使用提供了哪些位置服务尚未提供的功能。

1 个答案:

答案 0 :(得分:1)

所有HERE iOS SDK应用程序必须在App Store提交过程中具有这些声明条目。仅当您的应用程序使用相关的HERE SDK功能时,才会提示应用程序用户适当的数据访问。

<key>NSLocationWhenInUseUsageDescription</key>
<string>This is needed to determine your current location</string>
<key>NSCameraUsageDescription</key>
<string>This is needed for the LiveSight augmented reality feature</string>
<key>NSBluetoothPeripheralUsageDescription</key>
<string>This is needed for the Bluetooth-based indoor positioning feature</string>
<key>NSMotionUsageDescription</key>
<string>This is needed for the indoor positioning feature</string>
<key>NSLocationAlwaysUsageDescription</key>
<string>This is needed to determine your current location</string>