How can I silently push an apk and get it installe

2019-07-26 07:25发布

I am trying to push an APK to the device and get it installed by Android device policy (Device owner) rather than pushing application from play store.

I am able to push applications that are available on play store using device policy


{
  "packageName": string,
  "installType": enum(InstallType),
  "lockTaskAllowed": boolean,
  "defaultPermissionPolicy": enum(PermissionPolicy),
  "permissionGrants": [
    {
      object(PermissionGrant)
    }
  ],
  "managedConfiguration": {
    object
  },
  "disabled": boolean,
  "minimumVersionCode": number,
  "delegatedScopes": [
    enum(DelegatedScope)
  ],
  "managedConfigurationTemplate": {
    object(ManagedConfigurationTemplate)
  }
}

Is there any way I can push an APK to the device and get it installed by android device policy ?

1条回答
小情绪 Triste *
2楼-- · 2019-07-26 08:21

It's not possible to use the Android Management API to install an APK that is not in Play.

However you can publish your app in Play and restrict it to one or more enterprises, this way your app won't be visible publicly. This is also explained here in the documentation of the Android Management API.

查看更多
登录 后发表回答