kiosk

How to create kiosk-mode iPhone app?

北城以北 提交于 2019-12-06 08:55:19
问题 I'd like to run an app in the KIOSK mode, so that it auto-starts after starting the device re-starts after app crash/power loss/etc. Any ideas how to do this on a [probably jailbroken?] iPhone? 回答1: The easiest method would be to create a mobilesubstrate extension that runs inside SpringBoard and throws up its own UIWindow . Create a static __attribute__((constructor)) function and inside register for UIApplicationDidFinishLaunchingNotification . After receiving the notification, 99% of the

Locking Down (“Kiosk Mode”) Android Devices [closed]

谁说我不能喝 提交于 2019-12-06 04:46:06
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 7 years ago . How would you go about locking down an Android device while meeting the following requirements: Access to Wifi networks Access to a single company's App Ability to download/update to newer versions of the company's App Access to Bluetooth Printers Obviously, this is a pretty general question, but I was hoping

Android Disable Recent Task Button like in SureLock

柔情痞子 提交于 2019-12-06 01:57:53
问题 Anyone who knows how to disable the Recent Task App Button when it launches the allowed application in the app just like in SureLock Kiosk Lockdown? If so, can you please provide codes for that? 回答1: From the source public void onWindowFocusChanged(boolean hasFocus) { super.onWindowFocusChanged(hasFocus); Log.d("Focus debug", "Focus changed !"); if(!hasFocus) { Log.d("Focus debug", "Lost focus !"); Intent closeDialog = new Intent(Intent.ACTION_CLOSE_SYSTEM_DIALOGS); sendBroadcast(closeDialog)

Security considerations for an ASP.Net web application that will be used on a public computer or kiosk

坚强是说给别人听的谎言 提交于 2019-12-05 14:21:08
I have an application that can be used without authentication on computers in public locations. It's a simple four page application that allows users to apply for a marriage license. Some offices will have a public computer kiosk where applicants can fill out their own information before proceeding to the clerk. They can also do so at home before visiting the office. What considerations should I take to make sure that a user cannot get access to the previous user's input? Some form data will contain sensitive info such as DOB, SSN and Mother's Maiden Name. 1. Disable AutoComplete So far, I've

Windows 10 kiosk mode, no Apps available

北城余情 提交于 2019-12-05 07:25:46
问题 I tried to install Windows 10 kiosk mode for the user " kiosk " without success, the assigned access app selection list is empty. Here is what I have done: I used the " administrator " account and created an Universal Windows App with Visual Studio 2015 (I just compiled the empty project, I do not added code). I built an App package and installed the app from/for the "kiosk" account. Back in the " administrator " account, I tried to set up the assigned access. I added the user " kiosk " and

Android Kiosk Mode - Allow Exit

人盡茶涼 提交于 2019-12-05 00:11:27
问题 I am writing Android application for kiosk mode. I am using this tutorial to create kiosk mode: http://www.andreas-schrade.de/2015/02/16/android-tutorial-how-to-create-a-kiosk-mode-in-android/ However, in the tutorial, the user still can click on home and then the application back after 2 seconds. So, I did a bit of modification to disable the home button by making my application as a home. I did it by put this in my manifest: <activity android:name=".MainActivity" android:launchMode=

Android Cloud Printing with No Dialogs

只谈情不闲聊 提交于 2019-12-04 23:46:09
I'm developing a kiosk type Android app and would like to add printing capability. Since it's a kiosk app, the less prompts/pop-ups the users have to do, the better. I was able to get the new Google Cloud Printing successfully going in my Android app but there are a few screens the users need to go through before printing can happen. I was wondering if anyone has any ideas on how to have things print automatically with no dialogs, the idea would be to pass whatever user selections are needed (paper size, orientation, etc) from preferences. Exact same problem we have! Silently printing without

Windows / Chrome / ATI / Browser fullscreen across multiple monitors

半腔热情 提交于 2019-12-04 19:52:24
问题 I am using the following test setup (Latest meaning as of July 14th 2012): Core i7 with an ATI FirePro V9800 (Eyefinity) Windows 7 Pro 64 Bit (latest updates / patches) Latest Catalyst drivers Latest Google Chrome Stable / Canary. 6 x 1080p displays (in a row) resulting in a 11520px by 1080px desktop . I have tried the following to get a fullscreen web view across displays: Set the maximize to whole desktop setting in the Catalyst control panel. That works for maximizing normal windows

WPF in kiosk mode - taskbar troubles

a 夏天 提交于 2019-12-04 13:36:34
问题 I'm trying to build an application that needs to lock down access to the PC while it is running. I need to make the app run topmost, in full screen mode, and ensure that alt-tabbing doesn't allow access to other apps or the taskbar. So far I have set TopMost = true, WindowStyle = WindowStyle.None and WindowState = WindowState.Maximized which achieves most of what I need, but I still get instances where the taskbar becomes visible. I've tried to implement the LostFocus behaviour on the window,

How to create kiosk-mode iPhone app?

夙愿已清 提交于 2019-12-04 12:08:53
I'd like to run an app in the KIOSK mode, so that it auto-starts after starting the device re-starts after app crash/power loss/etc. Any ideas how to do this on a [probably jailbroken?] iPhone? The easiest method would be to create a mobilesubstrate extension that runs inside SpringBoard and throws up its own UIWindow . Create a static __attribute__((constructor)) function and inside register for UIApplicationDidFinishLaunchingNotification . After receiving the notification, 99% of the standard iPhone SDK will work as-is. It will have to be jailbroken because the standard OS won't give you