I have an android emulator that boots my choice of AVD. I have a terminal emulator app installed on this AVD that gives me shell access to the device by launching
$ adb shell
#
I want to disable this behavior so that adb shell cannot be invoked.
I read a number of tutorials pertaining this , and I figured out that it essentially depends on ROM and default.prop entries during the boot time.
My AVD is located at ~/home/user/.android/AVD/.MyAVD
I have modified ramdisk.img to include a default.prop file to include the following :-
ro.secure = 1
After the emulator is booted it shows the ro.secure = 1 is enabled on default.prop file through
cat default.prop
Yet, adb shell is invoked with root access.So my question is how do I disable root access on a emulator.