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'm basically trying to do this: Changing the Android emulator locale automatically

Everything works up until 'start'. the emulator starts to boot but keeps loading at the shimmering 'ANDROID' screen forever. I must be missing something... How can I restart the emulator from ADB?

Okay, I should be more specific.

I am trying to do this from the command line using adb. I can use adb to setprop and I can stop the emulator. When I try doing 'start' in the adb shell, the emulator does begin to boot, but it never returns to the lock screen.

share|improve this question
are you 'start'ing by using the CLI? emulator -avd my_avd -prop persist.sys.language=en -prop persist.sys.country=GB – TryTryAgain Mar 21 '12 at 18:24
That would avoid messing with the System Image – TryTryAgain Mar 21 '12 at 18:25
1  
Hmm, this could work. thanks! – jeff Mar 21 '12 at 18:44

3 Answers

up vote 1 down vote accepted

I'm pretty sure this will work:

  • Clear/Wipe the AVD to defaults or create a new one.

  • Start the AVD/Emulator from the CLI with the following command

    emulator -avd my_avd -prop persist.sys.language=en -prop persist.sys.country=GB
    

change as needed. That way you are not messing with the system image which can cause hangs/crashes. And you can easily set it on boot for a variety of Locales.

share|improve this answer
1  
I think I will end up doing something like this. The only downside is that when I am changing language/country again I have to totally kill the emulator every time. Which I guess isn't so bad. – jeff Mar 21 '12 at 19:05
@jeff Right, well it's either kill it and start from the CLI this way, or set it with ADB and restart it...so, pretty much the same pain I guess. IMO just a little easier from the CLI one-liner. – TryTryAgain Mar 21 '12 at 19:09

Some versions of the emulator (android-7) are buggy and just hang at the shimmmera.

Try restarting it with "wipe user data" option (yes, you will have to re-run your app or at least reinstall it).

share|improve this answer

you can restart the emulator from adb shell, start the emulator and also adb shell in the terminal.

start Starts (restarts) an emulator/device instance.
stop Stops execution of an emulator/device instance.

share|improve this answer
This is what i'm trying! I'm in the terminal, i'm using adb. I can make the prop changes, i can stop the emulator, but when I do 'start' it just never finishes booting up. – jeff Mar 21 '12 at 18:29

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.