Android 管理 API Google Playstore iFrame 更改未反映在托管设备上
Android Management API Google Playstore iFrame changes don't reflect on managed devices
我注意到在我的组织的嵌入式 Google Play Store iFrame 中,如果我将应用程序添加到已批准的集合中,这些应用程序在白名单或黑名单中不会显示不同玩商店模式。这些应用程序集合应该反映在托管设备上的什么位置?如果我处于白名单模式,我希望 Google Play 商店 iFrame 中已批准的应用程序可用于具有包含白名单模式的策略的托管设备。这不是它的工作原理吗?
这是我们用于测试的非常简单的策略:
{
"name": "enterprises/ORGANIZATION/policies/Whitelist",
"version": "18",
"systemUpdate": {
"type": "POSTPONE"
},
"addUserDisabled": true,
"removeUserDisabled": true,
"locationMode": "LOCATION_USER_CHOICE",
"networkEscapeHatchEnabled": true,
"playStoreMode": "WHITELIST"
}
您需要确保要包含在 whitelist 中的应用
使用 "installType: “Available”
添加到您的政策中
为了简化将这些应用程序添加到您的策略中的过程,您的解决方案应该使用 SELECT 模式的 iFrame 作为 integration guide 中的概述。
您的保单应如下所示
{
"name": "enterprises/ORGANIZATION/policies/Whitelist",
"version": "18",
"systemUpdate": {
"type": "POSTPONE"
},
"addUserDisabled": true,
"removeUserDisabled": true,
"locationMode": "LOCATION_USER_CHOICE",
"networkEscapeHatchEnabled": true,
"playStoreMode": "WHITELIST",
"applications": [
{
"packageName": "com.linkedin.android",
"installType": "AVAILABLE"
},
{
"packageName": "com.android.chrome",
"installType": "AVAILABLE"
},
{
"packageName": "com.dropbox.android",
"installType": "AVAILABLE"
}
]
}
我注意到在我的组织的嵌入式 Google Play Store iFrame 中,如果我将应用程序添加到已批准的集合中,这些应用程序在白名单或黑名单中不会显示不同玩商店模式。这些应用程序集合应该反映在托管设备上的什么位置?如果我处于白名单模式,我希望 Google Play 商店 iFrame 中已批准的应用程序可用于具有包含白名单模式的策略的托管设备。这不是它的工作原理吗?
这是我们用于测试的非常简单的策略:
{
"name": "enterprises/ORGANIZATION/policies/Whitelist",
"version": "18",
"systemUpdate": {
"type": "POSTPONE"
},
"addUserDisabled": true,
"removeUserDisabled": true,
"locationMode": "LOCATION_USER_CHOICE",
"networkEscapeHatchEnabled": true,
"playStoreMode": "WHITELIST"
}
您需要确保要包含在 whitelist 中的应用 使用 "installType: “Available”
添加到您的政策中为了简化将这些应用程序添加到您的策略中的过程,您的解决方案应该使用 SELECT 模式的 iFrame 作为 integration guide 中的概述。
您的保单应如下所示
{
"name": "enterprises/ORGANIZATION/policies/Whitelist",
"version": "18",
"systemUpdate": {
"type": "POSTPONE"
},
"addUserDisabled": true,
"removeUserDisabled": true,
"locationMode": "LOCATION_USER_CHOICE",
"networkEscapeHatchEnabled": true,
"playStoreMode": "WHITELIST",
"applications": [
{
"packageName": "com.linkedin.android",
"installType": "AVAILABLE"
},
{
"packageName": "com.android.chrome",
"installType": "AVAILABLE"
},
{
"packageName": "com.dropbox.android",
"installType": "AVAILABLE"
}
]
}