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

Android device provisioning as a dedicated device using Android Management API fails

I am trying to build an Android Enterprise solution set using Android Management API and Android DPC in Dedicated Device mode. following the quickstart guide, I created Project, Enterprise and Policy. Stuck at the device provisioning phase. Device…
0
votes
1 answer

How to get the Enterprise token from the Callback URL without redirect it to new tab in the browser?

I have a doubt in extracting the Enterprise token. I know I can copy the Enterprise token from the URL. Instead of copying it,Is there anyway to extract the token without opening from the callbackURL? You have mentioned to point to the server in the…
0
votes
2 answers

Distributing Private apps through Android Management API

I am using Android Management API for setting up kiosk mode. I was able to create an enterprise, enroll a couple of devices, install the apps available in store and control it via policies. It works just fine. Now I want to publish my app to Play…
itdeeps
  • 277
  • 10
  • 25
0
votes
1 answer

Block a device when it is offline

Our customer would like to block devices if they've not been communicating with our backend for a long time. I've checked the PolicyEnforcementRule policy setting, but according to the documentation, it only works with a top-level policy. Put it…
Florian
  • 235
  • 1
  • 11
0
votes
1 answer

How to get Android Enterprise details related to Gmail account

I'm trying to fetch the details of Enterprise related to an Gmail account, is there any default API to fetch the Enterprise details related to Gmail account ?
0
votes
1 answer

Devices not getting sync up on policy change

Devices enrolled to the policy are not getting updated on device patch(changing policy) or doing any change on applied policy(like disable the status bar, disable camera). The device needs a manual reboot several times to pickup up a real-time state…
Umang Mishra
  • 41
  • 1
  • 1
  • 3
0
votes
0 answers

Enrollment issue with a Wishtel device

We cannot enrol a Wishtel IRA Tablet device in device owner mode using the Android Management API. The enrollment process stops before launching our companion app during setup (through the setupActions profile setting). The enrollment process is…
Florian
  • 235
  • 1
  • 11
0
votes
1 answer

Not able to apply Policy of Android Enterprise

I am creating an app with the use of Android Enterprise. For that, I added dependencies in the build.gradle file. implementation 'com.google.apis:google-api-services-androidmanagement:v1-rev84-1.25.0' I am trying to disable uninstalling application…
0
votes
1 answer

Unable to login to gmail

I enrolled a device under work profile, installed gmail app from playstore through android management API. I pre-configured email(through managed configuration). On device I can see the email but when I try to login(provided password) it says…
Jellaraj Yadav
  • 51
  • 1
  • 3
  • 6
0
votes
1 answer

Android management API: find device in list of devices on android Q

We have a cosu app, that can manage its lock state with calls to Android management API. To do this, we receive a list of devices with devices.list query, compare each device's hardwareInfo.serialNumber with IMEI, received from Build.getSerial() and…
anro
  • 1,300
  • 16
  • 30
0
votes
1 answer

Performing enterprise wipe on devices using Work Profile?

I wish to perform Enterprise Wipe on devices with Work Profiles. Essentially, this would enable admins from my company to remove all corporate-related information from a device without disturbing the individual's personal data. I am aware a topic…
0
votes
1 answer

Enable bluetooth with Android Management API

I have noticed that some devices have bluetooth enabled by default (after a factory reset) and some others don't. In my Android Management API policy I would like to specify that bluetooth should be enabled. I've tried setting bluetoothDisabled to…
sdabet
  • 18,360
  • 11
  • 89
  • 158
0
votes
1 answer

Unable to create a WebToken for the Web App iframe using google-api-php-client

I am using the PHP library to use the Android Management API. I can update policies successfully. But I am unable to create a WebToken needed for the Web App iframe. I have set a credential file. I do $client = new…
0
votes
1 answer

Android Management API: How to prevent any password to be set?

Is there any way to prevent any security level (password, fingerprint, face id) to be set by a user? I've expected all the possibly related properties such as passwordPolicies, keyguardDisabled (true), keyguardDisabledFeatures (ALL_FEATURES), but…
0
votes
1 answer

Android Management API: How to prevent the initial apps to be uninstalled during enrollment?

Is there any way to keep all the initial apps besides those mentioned within the policy? I've inspected all the possibly related properties such as blockApplicationsEnabled and playStoreMode, but couldn't find a way.