简体   繁体   English

如何使用 Android 管理 API 安装私有应用程序?

[英]How to install private apps using Android Management API?

I have made the application available to the organization in Google Play Store.我已在 Google Play 商店中向组织提供该应用程序。

I am using Android Management API to install the application in the device.我正在使用 Android 管理 API 在设备中安装应用程序。 The public apps are getting installed but the private app is not getting installed.正在安装公共应用程序,但未安装私有应用程序。 I am getting the following nonComplianceDetails when calling https://androidmanagement.googleapis.com/v1/ {parent=enterprises/*}/devices API我在调用https://androidmanagement.googleapis.com/v1/ {parent=enterprises/*}/devices API 时收到以下 nonComplianceDetails

"nonComplianceDetails": [ { "settingName": "applications", "nonComplianceReason": "APP_NOT_INSTALLED", "packageName": "com.xyz.abc", "installationFailureReason": "IN_PROGRESS" }, { "settingName": "persistentPreferredActivities", "nonComplianceReason": "APP_NOT_INSTALLED", "packageName": "com.xyz.abc" } ] “nonComplianceDetails”:[ {“settingName”:“applications”,“nonComplianceReason”:“APP_NOT_INSTALLED”,“packageName”:“com.xyz.abc”,“installationFailureReason”:“IN_PROGRESS”},{“settingName”:“persistentPreferredActivities ", "nonComplianceReason": "APP_NOT_INSTALLED", "packageName": "com.xyz.abc" } ]

Am I missing something in the policy?我是否遗漏了保单中的某些内容?

I am not able to view the app in the device play store.我无法在设备 Play 商店中查看该应用程序。 App is not getting installed also.应用程序也没有安装。 And when I am giving installType as KIOSK a page is comming which shows 'Installing work apps'.当我将 installType 作为 KIOSK 时,会出现一个显示“正在安装工作应用程序”的页面。 And never gets installed.并且永远不会安装。 Also the app is approved in managed Play Store Enterprise.此外,该应用程序已在托管 Play Store Enterprise 中获得批准。

Make sure that your private app is distributed properly to your enterprise.确保您的私有应用程序已正确分发给您的企业。 You can check this link on how to properly distribute your private app to an enterprise.您可以查看此链接,了解如何将您的私有应用程序正确分发给企业。

The non-compliance indicates that the installation is still in progress .不合规表明安装仍在进行中。 This app could take a while to install depending on the size of the app and network connection speed.此应用程序可能需要一段时间才能安装,具体取决于应用程序的大小和网络连接速度。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM