如果我手动上传我的 apk,SOTI MobiControl 确实会看到我的托管配置

问题描述 投票:0回答:1

我对在 LOB(业务线)应用程序中公开 Android“限制”的正确方法有疑问,特别是在上传 APK 时。

我的目的是通过将 APK 上传到 SOTI MobiControl,然后配置托管设置,将我的应用程序用作 LOB 应用程序。

当前场景如下:当我使用托管 Google Play 时,我可以轻松访问我的托管配置

restrictions
。但是,当我使用相同版本的应用程序并将其作为 APK 上传时,托管配置不可见。

举例来说,在 SOTI MobiControl 中,SOTI 无法显示我的应用程序的托管配置(与通过托管 Google Play 使用它时不同)。

这是我的限制。我错过了什么吗?

<?xml version="1.0" encoding="utf-8"?>
<restrictions xmlns:android="http://schemas.android.com/apk/res/android">
    <restriction
        android:key="TestConfJson"
        android:title="@string/TestConfJson"
        android:restrictionType="string"
        android:defaultValue=""/>
</restrictions>

例如,它完美适用于 GlobalProtect_6.1.4.apk 应用程序,但不适用于我的应用程序。

android mdm soti android-restrictions mobicontrol
1个回答
0
投票

我的应用程序的最小 sdk 版本为 19,apk 具有以下结构

当我切换到 min sdk 版本 21 后,它改变了结构。 SOTI 现在可以阅读了。

在我看来,SOTI 在如何读取此配置方面存在错误。

我不指望 SOTI 会修复它,因为

restriction
是 API 21 的一部分。

© www.soinside.com 2019 - 2024. All rights reserved.