简体   繁体   English

应用程序未通过托管的 google play 商店更新

[英]App does not update through managed google play store

I can't update the app through Android management API.我无法通过 Android 管理 API 更新应用程序。 Here is my policy:这是我的政策:

{
    "applications": [
    {
      "packageName": "XXXXXXXXXXXX",
      "installType": "FORCE_INSTALLED",      
      "defaultPermissionPolicy": "GRANT",
      "minimumVersionCode": 10206,
       "delegatedScopes": ["ENABLE_SYSTEM_APP","PACKAGE_ACCESS"]

    }
  ],
  "stayOnPluggedModes": ["AC"],
   "screenCaptureDisabled": true,
   "installAppsDisabled": true,
   "dataRoamingDisabled": true,
   "adjustVolumeDisabled": true,
   "maximumTimeToLock": "0",
   "appAutoUpdatePolicy": "ALWAYS",
   "setupActions":[
     {
       "launchApp": {           
              "packageName": "XXXXXXXXX"          
       }
     }
   ],
   "systemUpdate": 
     {
        "type" : "AUTOMATIC"
     }


}
'''

I'm always getting a response on app update "Can't install the apps" the settings on this device don't allow you to install the apps.我总是收到关于应用程序更新“无法安装应用程序”的响应,此设备上的设置不允许您安装应用程序。 What do I need to do in order to have stable updates?我需要做什么才能获得稳定的更新?

It seems that the property "installAppsDisabled" needs to be set to false in order to receive updates.似乎需要将属性“installAppsDisabled”设置为 false 才能接收更新。

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

相关问题 更新处于 KIOSK 模式的托管 Google Play 应用 - Update Managed Google Play app that is in KIOSK mode 更新Google Play商店中的应用 - Update app in Google Play store Google Play商店更新会重新下载整个应用吗? - Does Google Play store update redownload entire app? Google Play / App Store:强制更新应用 - Google Play / App Store: force update app 为什么即使设备中已经存在最新版本,我在 Google Play 商店中的应用仍然要求更新? - Why does my app in Google Play Store urges to update even though the latest version is already present in device? Google Play商店是否会向“Beta测试人员”发送“Beta App更新”通知? - Does Google Play Store send “Beta App Update” notification to “Beta Testers”? 如何从Google Play商店更新Cordova Sencha Touch应用程序? - How to update cordova sencha touch app from google play store? 如何在上传到 Google Play 商店的应用中公开托管配置? - How can I expose managed configuration in an app uploaded to the Google Play Store? 将发布的应用更新到Google Play商店(关于密钥库) - Update published app to Google play store(Regarding keystore) 我的应用程序不在 Google Play 商店中,我可以让它自动更新吗? - My app is not on the Google Play store,can I get it to auto update?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM