Can I configure my Android installation to run a single application?

Is it possible to configure Android OS to run only one application?

Basically, I want to configure the Android device so that it only loads and runs one application, and for this application it automatically switches to the top of the screen. In addition, when it closes, it is started and switched again. Any ideas?

Thanks, David

+4
source share
2 answers

One way is to get the Android source and write your own custom Android ROM as Octavian wrote .

Another alternative would be to write your own home application, which, in fact, is not a home application (but replaces the intention of the default home application). See SlideScreen for an example of a non-traditional β€œhome” application.

+3
source

Yes it is possible. You should get the source codes for Android and basically create a custom ROM. After applying all the necessary changes, you bake your ROM and install it on your device.

Pretty much everything you need to know about the source, and the source compilation process is in Android sources . You can view the source code in your browser by following this link .

Hope this helps you. Good luck.

+2
source

All Articles