How can I get (or bypass) the Android DPC support library?

I am trying to implement an Android MDM client application known in the Android For Work world as a device policy controller or DPC. Google documentation on creating a DPC is here .

The recorded process begins by loading the DPC support library. Unfortunately, the link they provide (in the EMM Community Technical Integration section) does not work: you are prompted to log in with a Google account, but after that I see the following:

Excuse me...

... but it looks like you don't have access to this place or content. If you think you should have access to this space, try logging out and re-entering your account menu by clicking on your avatar in the upper right corner of this page. If this problem persists, please report it to your support representative and we will fix other problems.

Others had the same problem: there was a question released that was released here that is only 2 months old, has no answer, but for some reason was marked "Intended Answer" and then ignored.

the steps outlined here show very clearly that the DPC Support Library is a required part of the process and does not describe any alternatives to its use.

So how can I get the DPC support library? Can I get it anywhere else? Or if it isn't, how can I find out what it is doing, can I reproduce these steps manually in my own code?


Some steps I've already tried:

+3


source to share


2 answers


Well, now I have access, so in that sense I have an answer, but I don't know how useful it is to others.

A Google rep responded to my forum here and gave my organization access to the EMM community. After this was enabled, the steps were as follows:



  • Create a new Google account using my work email address
  • Sign in to the Cloud Connect portal with this account
  • Click "EMM Community"
  • Go to the Recommended Technical Tips section and find the link to download the DPC Support Library.
+1


source


An alternative to building your own Device Policy Controller application is to use the Android Management API and therefore do not need to use the DPC support library.This API does not have all the functionality you can get by creating your own Device Policy Controller application, but it is much easier to implement.



0


source







All Articles