kiosk-mode

startLockTask() without request user action

被刻印的时光 ゝ 提交于 2021-02-07 19:44:30
问题 I want to activate startLockTask() without any request for users. So at first i read this Device Administration and create small sample application. In result i have my application in device administrators list but when i call startLockTask() it still execute not in silent mode. When i'm trying to call it so: DevicePolicyManager myDevicePolicyManager = (DevicePolicyManager) getSystemService(Context.DEVICE_POLICY_SERVICE); String[] packages = {this.getPackageName()}; myDevicePolicyManager

How to Hide Firefox Camera Icon Overlay in Windows

早过忘川 提交于 2021-02-07 12:39:49
问题 I'm working on a kiosk project that uses Firefox and mozGetUserMedia to access an attached camera. The problem is, even using kiosk addons (like mKiosk) this icon appears at the top of the screen whenever the camera is accessed using mozGetUserMedia: Here you can see it at the top of the screen. I have tried searching through the options on the about:config page, but I can't find any setting that disables this. It only shows up on Windows, and not OS X. How can I disable this icon? 回答1:

How to Hide Firefox Camera Icon Overlay in Windows

眉间皱痕 提交于 2021-02-07 12:38:59
问题 I'm working on a kiosk project that uses Firefox and mozGetUserMedia to access an attached camera. The problem is, even using kiosk addons (like mKiosk) this icon appears at the top of the screen whenever the camera is accessed using mozGetUserMedia: Here you can see it at the top of the screen. I have tried searching through the options on the about:config page, but I can't find any setting that disables this. It only shows up on Windows, and not OS X. How can I disable this icon? 回答1:

Problem when restart app on kiosk mode windows 10

旧巷老猫 提交于 2021-02-07 10:33:20
问题 We are developing a POS application which will be setup at our stores. This app is an UWP application which run on Windows 10 IOT LTSC Kisk Mode and we decided to deploy by using side-loading. In order to improve the update process, we have try using this library to implement the application update feature https://github.com/Dwrandaz/AutoUpdateComponent On desktop mode, It works well with out any problem. After update process, the application will be restarted and the new version will be

Perform calls in Android Locktask mode

喜你入骨 提交于 2021-01-24 08:15:37
问题 TL;DR How to make a phone call while using Activity.startLockTask() ? I'm trying to setup a restricted environment on an Android device, i.e. what is usually called "Kiosk-Mode". Official documentation can be found here: https://developer.android.com/work/cosu.html The official way of doing this suggest to use Activity.startLockTask. This works fine until you want to start other apps from within your Activity which is in startLockTask() mode. Any activity that launches must not start on a new

Start another app while task-locking is enabled

人走茶凉 提交于 2020-08-10 04:05:40
问题 I used this guide to activate my app as device owner. So, I can activate task locking. This is very close at how I want Android to behave. Is it possible to start one or more specific third-party-apps out of the device owning app and without deactivating the task-lock? If not, is it possible with a little workaround? I am thinking about deactivating the task-lock, starting the other app and then activating task-lock for the other app remotely. Thank you in advance. 回答1: A locked task can only

Disable Android navigation in Kiosk Mode (Android Management API)

不羁岁月 提交于 2020-07-22 21:39:39
问题 We have a Kiosk mode setup completed using Android Management API with our launcher app acting as kiosk app. However customizations applied through policy are not working as per expected. "kioskCustomization": { "systemNavigation":"HOME_BUTTON_ONLY", "statusBar":"SYSTEM_INFO_ONLY", "deviceSettings":"SETTINGS_ACCESS_BLOCKED" } We have this in the policy and it is getting synced to device but still all buttons in navigation bar working and still we can able to access settings. What we need to

Disable Android navigation in Kiosk Mode (Android Management API)

筅森魡賤 提交于 2020-07-22 21:39:27
问题 We have a Kiosk mode setup completed using Android Management API with our launcher app acting as kiosk app. However customizations applied through policy are not working as per expected. "kioskCustomization": { "systemNavigation":"HOME_BUTTON_ONLY", "statusBar":"SYSTEM_INFO_ONLY", "deviceSettings":"SETTINGS_ACCESS_BLOCKED" } We have this in the policy and it is getting synced to device but still all buttons in navigation bar working and still we can able to access settings. What we need to

Is it possible to access ProgramData folder from UWP without file picker?

依然范特西╮ 提交于 2020-07-16 10:36:12
问题 Can anyone share your ideas of accessing the custom paths like program data folder in the C drive from UWP application?? I am getting an access denied while accessing this path. Any special capabilities that I have to add to the AppManifest. Basically I need to access this folder from the a KIOSK where.i have a specific file which is to be reused for KIOSK mode in UWP. 回答1: Your only hope is broadFileSystemAccess. Also, this answer could be useful. 回答2: If you want to carry data of a smaller

Management API error: persistentPreferredActivities 4

心已入冬 提交于 2020-06-28 06:32:09
问题 I am building an Android KIOSK app, and I try to enable kiosk mode with Android Management API by providing a device policy. My policy json is: { "keyguardDisabled": true, "applications": [ { "packageName": "my.own.app", "installType": "KIOSK", "defaultPermissionPolicy": "GRANT" } ] } What's interesting, the policy is from official API's example, so I suppose that works. Whatever, always get this error: Error info persistentPreferredActivities 4 And just a google search does not give me any