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 ?