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
2
votes
1 answer

How does the device deletion actually work?

With the Android Management API, I delete a device using the enterpises.devices.delete method. This works fine if the device has a data connection. However, what happens if the device is offline? If the device is turned off, then turned on several…
Florian
  • 235
  • 1
  • 11
2
votes
2 answers

Android Management Api losing control over enrolled device

We are using android management API to manage our internal enterprise-level devices, it seems that sometimes google is losing the connectivity or command with the devices even if the device’s WIFI is fully functional. We experienced that one of our…
2
votes
1 answer

Device Details Tracking Android Management API (MDM)

We are Performing POC To get all the device information after device provisioning Like Battery Status, Geo Location, Available storage and many more By using Android Management API As we were able to get so many information from Custom DPC
2
votes
1 answer

Android Management API: List of Enterprises/Policies?

This is driving me nuts. I've successfully followed the Android Management API Quickstart to create a project/enterprise/policy and install it on a device. I stupidly didn't write down the enterprise or policy IDs. I tried to create a new set, but…
Lauren
  • 743
  • 3
  • 12
  • 24
2
votes
1 answer

Android Management API - Exit kiosk mode with password

I have question. I have fully managed device and use Android Management API (https://developers.google.com/android/management) I created policy with this definition: { "applications": [ { "packageName": "com.example.myapp", …
TomasBiesok
  • 101
  • 1
  • 6
2
votes
1 answer

How can I silently push an apk and get it installed by android device policy using android management api?

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 { …
2
votes
1 answer

Unable to install apk after device provisioning (Android 8.0)

We are developing a COSU app using Android Management API and QR code provisioning. We're planning to distribute app with private Google play, but for now I'm trying to make it work with manual installation using apk. That's how it should work: A…
anro
  • 1,300
  • 16
  • 30
2
votes
1 answer

How to get the enterpriseToken when creating an enterprise with the Android Management API?

I'm trying to create a new enterprise using api method. First I maked signupUrls.create with request parameters projectId and callbackUrl. In field callbackUrl, I put my Google Cloud platform admin url. And I got a response { "name":…
Jekson
  • 2,892
  • 8
  • 44
  • 79
2
votes
2 answers

Management API remove blocked apps

I'm using the Android Management API with a DEVICE_OWNER policy that has "playStoreMode": "BLACKLIST" and an application with "installType": "BLOCKED" to blacklist specific application. Here's the policy I'm using for development: { "name":…
Brian
  • 83
  • 1
  • 7
2
votes
1 answer

Enrollment token expiry in Android Management API

I have been going through detailed documentation of Android Enterprise for Dedicated Devices setup. I have query regarding expiry of Enrollment Token. Before that, let me highlight scenario. I manage Dedicated Device using my own server…
NightFury
  • 13,436
  • 6
  • 71
  • 120
2
votes
1 answer

Management API and app distribution inside enterprise

I'm using Android Management API to turn several devices into kiosks for ticketing application. I was able to create an enterprise, enroll a couple of devices, install the app manually and control it via policies. It works just fine. Now I want to…
2
votes
1 answer

Android Management API (COSU) on AndroidTV?

Android Management APIs are supposed to be "compatible with any device running Android 5.1 or above that has Google Play installed." I really want that to be true, but am having trouble with Android TVs. (Specifically, a NexBox A95x and a TX3mini…
1
vote
1 answer

How to enable the screen orientation(Landscape and portrait) in kiosk mode using android management api

While implementing the kiosk mode setup using the Android management API, I encountered a successful implementation. However, I now need to configure the display screen orientation for the kiosk mode. here is my PolicyJson { "applications": [ …
maranR
  • 363
  • 8
1
vote
1 answer

Failed to modify Google Cloud Identity enterprise policies: "Caller is not authorized to manage enterprise."

I'm trying to provision a dedicated device using Android Management API I have created an organisation with its account from my personal Gmail account, enabled Android Management API, created an app in Google Play Console and granted the Android…
1
vote
2 answers

Get details from Android Device Policy after enrolment via Android Management API using flutter

I enroll a fully-managed device with Android Management API using qrCode. After enrollment, I want to get any kind of detail of enrolmentToken or qrCode that was used to enroll the device, so I can ping my server of the details and update the…