2

A complete AOSP build lasts approximately 5 hours on my laptop. Instead of running make after each change (just want to test some ideas...) I read that it is possible to do mmm frameworks/opt/telephony (or any other module) and run make snod afterwards.

Unfortunately this does not work for me. The emulator simply hangs during the boot while displaying the big Android letters.

Can someone give me a hint what is going on there and how to fix the problem?

It is about Android 5 on x86_64.

firefexx
  • 666
  • 6
  • 16
  • for solution see http://stackoverflow.com/questions/13135844/building-separate-android-modules-with-dexpreopt-disabled – firefexx Jan 13 '15 at 14:51

1 Answers1

2

After mmm frameworks/opt/telephony, try running:

adb root
adb remount
adb sync system

This should only sync files you've built. Once it finishes, restart the runtime:

adb shell stop
adb shell start
ejboy
  • 4,081
  • 5
  • 30
  • 32