0

我正在尝试以“工作配置文件”模式(BYOD)以编程方式安装 apk。但是有一个我无法解决的问题:无法在 android 版本 7.0(24) 和 7.1(25) 中安装 apk。将出现一个带有此消息的弹出对话框:

您的管理员不允许安装从未知来源获取的应用

瞧我怎么做:

val uri = FileProvider.getUriForFile(context,authority,File(filePath))   
val openFileIntent = Intent(Intent.ACTION_VIEW)
openFileIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION)
openFileIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK)
openFileIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP)
openFileIntent.data = uri
context.startActivity(openFileIntent)

在清单中:

<provider
    android:name="androidx.core.content.FileProvider"
    android:authorities="${applicationId}.provider"
    android:exported="false"
    android:grantUriPermissions="true"
    tools:replace="android:authorities">
    <meta-data
        android:name="android.support.FILE_PROVIDER_PATHS"
        android:resource="@xml/file_provider_paths"
        tools:replace="android:resource" />
</provider>

和 file_provider_paths.xml :

<?xml version="1.0" encoding="utf-8"?>
<paths>
    <external-path
        name="external"
        path="." />
    <external-files-path
        name="external_files"
        path="." />
    <files-path
        name="files"
        path="." />
</paths>
4

1 回答 1

0

这就是我找到解决方案的方式:

    if (Build.VERSION.SDK_INT <= Build.VERSION_CODES.N) {
        devicePolicyManager.setSecureSetting(
            componentName,
            Settings.Secure.INSTALL_NON_MARKET_APPS,
            "1"
        )
    } else {
        devicePolicyManager.addUserRestriction(componentName,
UserManager.DISALLOW_INSTALL_UNKNOWN_SOURCES)
    }
于 2020-05-06T09:13:04.597 回答