Android start only my application

0

I do not know if this would be a programming problem, I think so ... I'm having a project to which the application I'm developing will be installed on appliances of a brand X, this app MUST be the only usable app, ie the user may not have power to close the app, "minimize", start other apps or even use the android status bar, in short, a device that works only one app. Can you do that?

    
asked by anonymous 06.09.2017 / 01:13

1 answer

3

Briefly ... No

Android is an operating system and your application is just a process that runs on it, you simply can not lock all the resources exclusively for your app. Even if you try to do this, at one time or another, Android will kill your process.

At the end of the day, what you're trying to do is a embedded system , that is, creating an application that runs exclusively on specific hardware.

    
06.09.2017 / 03:24