Questions tagged [android-enterprise]

Questions related to Android Enterprise APIs and tools for developers to integrate support for Android into their enterprise mobility management (EMM) solutions.

Android Enterprise is a Google-led initiative to enable the use of Android devices and apps in the workplace. The program offers APIs and other tools for developers to integrate support for Android into their enterprise mobility management (EMM) solutions.

88 questions
1
vote
4 answers

Android Management API uninstall app from work profile of managed device

I have force_installed an app into my enrolled device by policy. How can I uninstall remotely that app from my enrolled device.
1
vote
0 answers

How to access file system with adb shell for the work profile

With the command "adb shell ls", only the files for the private user are listed. How to access the files for the work profiles? There is no argument to specify the user, like the am command has.
Christian Schulzendorff
  • 1,431
  • 1
  • 18
  • 15
1
vote
1 answer

Reboot android programatically on Android Enterprise dedicated device

We are migrating from the legacy Android Device Administrator to the new Android Enterprise policies, but we are facing a challenge migrating one functionality that need to reboot the android when some hardware functionality stop working (like…
Tiago
  • 2,871
  • 4
  • 23
  • 39
1
vote
0 answers

In-app billing library in android enterprise

I have some troubles about using in-app billing library v3 in managed devices using android enterprise In my public app I have two sku objects (subscription items) to be purchased, those objects should load as alert dialog when the app starts, but…
1
vote
1 answer

how to handle the passwords in an emm android app?

if i use the android managed configuration with all the app restrictions and so on... and the admin should set the credentials (example for a mail server) what is with security? All the values you define in the restrictions.xml file are set in plain…
1
vote
1 answer

Devices not getting updated as per minimumVersioCode enforcement on policy

We have close to around 5000 devices using android management api for its management. We had recently done a minimumVersionCode enforcement on new deployed app version but it seems like 13% of the device is still to be updated to the new version,…
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

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

Unable to share file from Personal to Work profile on Android 6 and below

Unable to share file from personal to work profile in Profile owner on Android 6 and below. I have written code to request and share file from personal profile to work profile in Profile owner application. I request for file from profile owner app…
1
vote
1 answer

Self-hosted/EMM hosted private app's via Android Management API

Is it possible to use AMAPI to publish self-hosted/private app's to a device that is either using work profile or is fully managed without using the play store? I am confused because what the answer i'm seeing in the following post doesn't jive…
1
vote
1 answer

How can I maintain multiple versions of an applications on playstore?

I want to maintain multiple versions of an application ,so that EMM admin has a control where he can silently push different version to different devices using android management api. Google play doesn't allow to maintain multiple versions of an…
1
vote
0 answers

Android EMM: Enable the System apps for the owner user

I need to enable some of the system apps of Android for the managed google play account. I am wirting the neccasary things like package names of those apps in the Device policy. Then I am provisioning my device with the policy but it does not show…
1
vote
1 answer

What is the purpose of the defaultValue in the Managed Configurations XML file?

I will be using Managed Configurations in an app I am developing. After getting some help with this answer, I do not understand how default values are used in Managed Configurations. My reference is this link. In my reference under "Note", Google…