Reputation: 320
I am currently working with an Android Management API (MDM) project. Unfortunately, I cannot find a solution for these issues:
Upvotes: 0
Views: 138
Reputation: 577
Delete
an app remotely you just have to remove it from the Policy
"applications": [
{
"packageName": "com.whatsapp",
"aliasName": "WhatsApp",
"installType": "FORCE_INSTALLED",
"lockTaskAllowed": true,
"defaultPermissionPolicy": "GRANT"
}
]
For example if you have WhatsApp
installed, just remove it from the policy and it will uninstall.
policy
attached to multiple devices you cannot individually control each device. To do so you'd have enroll each device with a new policy
Upvotes: 2