
[英]Not able to fetch App Configurations Policy from Microsoft Intune in android app
[英]Android MDM with MS Intune: Many Configurations with bundleArray
我正在开发用于与MS Intune进行MDM集成的应用程序。 我需要通过MDM配置配置多个用户帐户。 我实现了Google在https://developer.android.com/work/managed-configurations中描述的代码,并且使用的是与VpnConfig示例完全相同的用例。
但是在MS Intune面板中,我只能看到“ bundleArray”。 可以正确读取配置,但是我无法定义捆绑软件来配置许多帐户。 有谁知道为什么只显示“ bundleArray”?
谢谢
这是我的app_restrictions.xml:
<restriction
android:key="mandator_list"
android:restrictionType="bundle_array"
android:title="@string/mdm_mandator_list_title"
android:description="@string/mdm_mandator_list_desc"
>
<restriction
android:key="mandator_config"
android:restrictionType="bundle"
android:title="@string/mdm_mandator_config_title"
android:description="@string/mdm_mandator_config_desc"
>
<restriction
android:key="set_mandator"
android:restrictionType="string"
android:title="@string/mdm_client_title"
android:description="@string/mdm_client_desc"
android:defaultValue=""
/>
<restriction
android:key="set_mandator_pwd"
android:restrictionType="string"
android:title="@string/mdm_password_title"
android:description="@string/mdm_password_desc"
android:defaultValue=""
/>
</restriction>
</restriction>
请参阅https://www.rohrbach-software.ch/com/intune_mdm.jpg ,以获取具有上述配置的MS Intune控制台的屏幕截图。
声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.