android-management-api

Android Management API - Exit kiosk mode with password

送分小仙女□ 提交于 2020-01-24 20:27:21
问题 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", "installType": "KIOSK", "defaultPermissionPolicy": "GRANT" } ], "cameraDisabled": false, "defaultPermissionPolicy": "GRANT", "debuggingFeaturesAllowed": true } but I want allow access to device settings or exit kiosk mode (kiosk app), when user write some password. It's

Single webapp kiosk mode via Android Management API

笑着哭i 提交于 2019-12-25 01:14:34
问题 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 and the documentation, but it's either not locking the tablet down or I'm getting non-compliance errors. Policies I've Tried Version 1 (source) { "version": 1, "applications": [ { "packageName": "com.google.my.webapp", "installType": "KIOSK",

How does designing custom android DPC app relate to Android management API?

匆匆过客 提交于 2019-12-21 04:49:59
问题 I'm new to android enterprise development world, and I have some misconception of how different pieces in the android enterprise ecosystem relate to one another. Let me explain. The solution that I'm trying to achieve is being able to lock the device into kiosk mode both remotely, and also based on some business logic do it even when the user is offline. I started investigating EMM and particularly Android Management API to solve the problem. I was able to lock the device remotely into kiosk

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

给你一囗甜甜゛ 提交于 2019-12-13 01:29:32
问题 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 { "packageName": string, "installType": enum(InstallType), "lockTaskAllowed": boolean, "defaultPermissionPolicy": enum(PermissionPolicy), "permissionGrants": [ { object(PermissionGrant) } ], "managedConfiguration": { object }, "disabled": boolean,

Android Management API (COSU) on AndroidTV?

◇◆丶佛笑我妖孽 提交于 2019-12-11 06:39:44
问题 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 I'm testing with.) My stumbling point is how to enter the enrollment token into the device when provisioning it? I had no problem with a Samsung tablet. But, the Android TVs don't use the same startup wizard after hardware reset, so there doesn't

How to distribute private Android app testing tracks using the Android Management API + Organisations?

邮差的信 提交于 2019-12-01 03:53:05
So I'm using the Android Management API to manage and handle deployment for an app to a kiosk device I am working on. I've created an organisation, created a policy, and ensured the app is limited to managed google play only, and assigned the organisation to the app. I've enrolled some devices onto the policy, and when the app is moved to prod (currently this is fine as there are only a handful of test devices on that policy), it downloads and installs. However my issue is that if I use the alpha track, and then assign the organisation to that alpha track, the new alpha version of the app

How to distribute private Android app testing tracks using the Android Management API + Organisations?

六眼飞鱼酱① 提交于 2019-12-01 00:45:28
问题 So I'm using the Android Management API to manage and handle deployment for an app to a kiosk device I am working on. I've created an organisation, created a policy, and ensured the app is limited to managed google play only, and assigned the organisation to the app. I've enrolled some devices onto the policy, and when the app is moved to prod (currently this is fine as there are only a handful of test devices on that policy), it downloads and installs. However my issue is that if I use the