提示如下:
Please revise the NSLocationAlwaysUsageDescription value in the Info.plist to specify the intended purpose of using the user's location while the app is in the background.
NSLocationAlwaysUsageDescription 这个在什么地方设置呢?
提示如下:
Please revise the NSLocationAlwaysUsageDescription value in the Info.plist to specify the intended purpose of using the user's location while the app is in the background.
NSLocationAlwaysUsageDescription 这个在什么地方设置呢?
BoredApe - 有问题就会有答案。
如果要更改此值,可以在manifest.json文件的中的plus->distribute->apple节点下添加plistcmds字段,值为["Set : NSLocationAlwaysUsageDescription XXXXXX"],其中XXXXXX为描述需要使用定位原因。保存后重新提交云端打包。
"plistcmds": [
"Set :NSLocationWhenInUseUsageDescription 我将使用位置定位权限用于推荐附近的汽车服务机构。",
"Add :NSLocationAlwaysUsageDescription string 我将使用位置定位权限用于推荐附近的汽车服务机构。",
"Set :NSLocationAlwaysAndWhenInUseUsageDescription 我将使用位置定位权限用于推荐附近的汽车服务机构。"
]
我也遇到这问题,设置了,还是不行,请问你这个问题解决了吗?
l***@163.com - liuyuchong
"plistcmds": [
"Set :NSLocationAlwaysUsageDescription XXXXX",
"Set :NSLocationWhenInUseUsageDescription XXXXX",
"Set :NSLocationAlwaysAndWhenInUseUsageDescription XXXXX"
]