Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.