user2913809
user2913809

Reputation: 335

Android Emulator to be writable

I have downloaded the AOSP source code and build it. I launched the emulator and it works fine. Now I can't create any directories( adb root adb shell) as it throws an exception "read-only system". when i launch emulator using "emulator writable-system" it still doesn't allow me to create any directories unless I execute the command "adb remount". Is it possible to make the image writable.

Upvotes: 2

Views: 1890

Answers (1)

$ emulator -list-avds
$ emulator -avd $name_of_your_avd -writable-system
$ adb root
$ adb remount

that's how you make the image writable. what are you trying to achieve?

Upvotes: 3

Related Questions