Bradjcox
Bradjcox

Reputation: 1509

Remove password from Android Emulator?

How to get rid of/get past the "Enter password to unlock" prompt in the Android emulator?

Wish I could explain how this got turned on but its probably my fault. I've been trying to use the android maven plugin to build apps for a custom kernel to get tooled up to build a custom device admin app. I recall finding a "API Demos" app in the emulator with and using its "Device Admin" button to register an account with google (even tho I'd already registered). Google refused every account name I could think of so I gave up. Or maven might have compiled a sample device admin app into that kernel.

I am not really sure how it got in this state. Will investigate once I get the emulator back in a usable state, if that's even possible.

Upvotes: 7

Views: 20032

Answers (3)

Dennis Kabugua
Dennis Kabugua

Reputation: 65

open C:\Users\User\.android\avd\your_device.avd\emulator-user.ini you get something similar to this

window.x = 16
window.y = 35
uuid = 1581076634048

the password in this case is 1581076634048 it worked for me

Upvotes: -1

Riddhi Barbhaya
Riddhi Barbhaya

Reputation: 1205

All applications and files that you have deployed to the Android Emulator are stored in a file named userdata-qemu.img located in the C:\Users\.android\avd\.avd folder. For example, I have an AVD named Android_2.2_Emulator; hence, the userdata-qemu.img file is located in the C:\Users\Wei-Meng Lee.android\avd\Android_2.2_Emulator.avd folder.

If you want to restore the emulator to its original state (to reset it, that is), simply delete the userdata-qemu.img file.

Upvotes: 2

Bradjcox
Bradjcox

Reputation: 1509

This seems to have fixed it:

emulator -avd AVD2.2 \
-system out/target/product/generic/system.img \
-initdata out/target/product/generic/userdata.img \
-wipe-data

Upvotes: 3

Related Questions