我一直在尝试通过android管理API中的配置文件以信息亭模式禁用系统导航
这是尝试更新的配置文件
{
"applications": [
{
"packageName": "com.example.demo",
"installType": "FORCE_INSTALLED"
}
],
"kioskCustomLauncherEnabled": true,
"keyguardDisabled": true,
"statusBarDisabled": true,
"kioskCustomization": {
"systemNavigation": enum (NAVIGATION_DISABLED)
},
"debuggingFeaturesAllowed": true
}
应用信息亭定制后,这就是即将出现的错误。 未应用“ kioskCustomization”时,配置文件更新成功
/usr/lib/python3.6/json/decoder.py in raw_decode(self, s, idx)
355 obj, end = self.scan_once(s, idx)
356 except StopIteration as err:
--> 357 raise JSONDecodeError("Expecting value", s, err.value) from None
358 return obj, end
JSONDecodeError: Expecting value: line 13 column 26 (char 273)
我假设用于禁用导航的枚举格式不正确
谢谢
答案 0 :(得分:1)
格式应为:
"systemNavigation": “NAVIGATION_DISABLED”
请注意,ENUM类型只是让您知道,只有一组特定的字符串可以用作策略中的值。
systemNavigation 的有效枚举值: https://developers.google.com/android/management/reference/rest/v1/enterprises.policies#systemnavigation