程序问答   发布时间:2022-06-02  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了Android Management API Google Playstore iFrame 更改不会反映在受管设备上大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

如何解决Android Management API Google Playstore iFrame 更改不会反映在受管设备上?

开发过程中遇到Android Management API Google Playstore iFrame 更改不会反映在受管设备上的问题如何解决?下面主要结合日常开发的经验,给出你关于Android Management API Google Playstore iFrame 更改不会反映在受管设备上的解决方法建议,希望对你解决Android Management API Google Playstore iFrame 更改不会反映在受管设备上有所启发或帮助;

我注意到,在我的组织的嵌入式 Google Play 商店 iframe 中,如果我将应用添加到已批准的集合中,这些应用在白名单或黑名单 Play 商店模式下的显示方式不会有所不同。这些应用程序集合应该反映在受管设备上的什么位置?如果我处于白名单模式,我希望 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"
            }
     ]
     }

大佬总结

以上是大佬教程为你收集整理的Android Management API Google Playstore iFrame 更改不会反映在受管设备上全部内容,希望文章能够帮你解决Android Management API Google Playstore iFrame 更改不会反映在受管设备上所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。