Questions tagged [android-management-api]

The Android Management API provides a way to manage enterprise devices and apps, whether you specialize in developing enterprise mobility management (EMM) software or are developing an in-house solution for your organization.

The Android Management API is compatible with any device running Android 5.1 or above that has Google Play installed. Designed with the needs of businesses in mind, it doesn't matter if an organization's devices come from a single manufacturer or from multiple sources. You can use the Android Management API to develop a single solution to manage them all.

Links:

Release Notes

333 questions
1
vote
2 answers

How to get DeviceId for new provisioned Android devices inside EMM through Android Management APIs?

Writing a POC at the moment and don't want to depend on Google Cloud's Pub/Sub service for getting back the deviceId for a newly provisioned BYOD using Android Management APIs. Is any any other way that after using an enrollment token for…
1
vote
1 answer

How to Manage Multiple Private Apps on Multiple play store of different customers using Android Management Apis?

Hi Based on Documentation https://developers.google.com/android/management/apps It's not clear how multiple play store accounts can be used, with Single Enterprise that is created using Android Management API's Suppose we build a solution using…
1
vote
1 answer

How can I locate a device which has been enrolled as a fully managed device?

I'm trying to find out how to locate an Android 9.0 device which has been enrolled using a Service Account and the Android Management API. The documentation does not seem to have any hints for my case. Since there is apparently no way of logging in…
awrush
  • 25
  • 2
1
vote
1 answer

Android Management API IssueCommand not working

When I issue either the LOCK or REBOOT command in Android Management API neither execute on the device: Command command = new Command(); command.Type = "LOCK"; var operation = svc.Enterprises.Devices.IssueCommand(command,…
RC Cola
  • 76
  • 5
1
vote
1 answer

Bluetooth scan and display devices not working when policy applied to device

I have an application that scans for Bluetooth device nearby and displays them on the app. This works fine when the phone is in normal mode, but when using android management API policy on the same phone, it does not show any result as before Unable…
1
vote
1 answer

How to keep the unique id for dedicated device in Android management api?

We are developing an emm console. Currently we are facing one issue with device data. How to get the unique id from the device provisioned via enrollment token using Android management api. A is an enterprise, we enrolled the mobile device to the…
1
vote
4 answers

Unable to REBOOT a device using Android Management API

I am trying to reboot a device using the enterprise ID and device ID. Below is the request parameter Screenshot from Android Management API guide Try It feature I don't see any action on the device end. If there is any alternate approach or if…
1
vote
3 answers

Updating profiles of android management API

I have managed to create an enterprise, policy and setup a device using the 'Android Management API - Quickstart' document. 1) But I am having trouble moving forward. I want to be able to change the policy and not sure how to go about it. Is there a…
Cleaton Pais
  • 150
  • 1
  • 3
  • 13
1
vote
1 answer

Single webapp kiosk mode via Android Management API

I'm trying to apply a policy to a few tablets via the Android Management API. I've been able to create my enterprise, web app, policy, and add the devices without issue. The trouble I'm having is with my policy. I've tried various versions from SO…
Lauren
  • 743
  • 3
  • 12
  • 24
1
vote
2 answers

API_LEVEL non compliance details ... anything to worry about?

We recently adopted the Android Management API and we've got around 250 kiosk devices which are in various locations throughout the UK. I can see a bunch of warnings related to the API level of the device. i.e policyCompliant: true, however there…
S.Thomson
  • 240
  • 1
  • 9
1
vote
1 answer

Notification sounds in Kiosk Mode

I am using the Android Management API for devices used in Care Homes. The requirement is that the devices are locked down to a standard that means users cannot mess about with the device, but gives them enough access to the apps they need to do…
DCWorld
  • 23
  • 2
1
vote
1 answer

App does not update through managed google play store

I can't update the app through Android management API. Here is my policy: { "applications": [ { "packageName": "XXXXXXXXXXXX", "installType": "FORCE_INSTALLED", "defaultPermissionPolicy": "GRANT", …
1
vote
1 answer

Why the AMAPI misses some managed properties from my schema?

I have an Android application with some managed configurations. But when I ask the AMAPI for the schema of this application, not all restrictions are retrieved. Here is the schema :
1
vote
1 answer

Can not set up Android Management API in fully managed mode using a QR code that authenticates with a service account

I'm setting up Android Management API on Android 8.1.0 in fully managed mode, using a QR Code. I'm following Google code lab link to provision a fully managed device, authenticate with my account then it works. But when I authenticate with a service…
1
vote
0 answers

How does systemUpdate WINDOWED parameter work for apk updates?

I tried to use the systemUpdate parameter with type WINDOWED and startMinutes/endMinutes like that : "systemUpdate": { "endMinutes": 700, "startMinutes": 645, "type": "WINDOWED" } However it doesn't seem to do anything about app…