I need to block network access to specific applications using Android management API.
I tried creating a policy something like that:
{
"applications": [
{
"packageName": "com.google.android.googlequicksearchbox",
"installType": "FORCE_INSTALLED",
"permissionGrants": [
{
"permission": "android.permission.CHANGE_NETWORK_STATE",
"policy": "DENY"
},
{
"permission": "android.permission.INTERNET",
"policy": "DENY"
}
]
}
]}
However it doesn't work, when checking the device's non-compliance details I'm getting this:
{
"nonComplianceDetails": [
{
"settingName": "applications",
"nonComplianceReason": "API_LEVEL",
"packageName": "com.google.android.googlequicksearchbox",
"fieldPath": "applications[1].permissionGrants"
},
],
}
Which basically means that my version of android doesn't support this restriction, I tried it on API 30 & 31.
I can't find any documentation on blocking network access to applications, and on which API level it's supported, anyone with experience on that?
android.permission.INTERNET is a special permission which cannot be granted or denied