androidGenX
androidGenX

Reputation: 1148

Push text file into android Emulator

I need to push a text file into android emulator in location SD card. I tried using DDMS and referring this video: http://www.youtube.com/watch?v=ipRke1P4rIc. But after pushing its not showing in emulator. why is that? Please help me.

Upvotes: 0

Views: 132

Answers (1)

N Sharma
N Sharma

Reputation: 34487

Error is transfer Error read only file system. Please help me guys. How to sort it out?

It seems you are pushing the file where you don't have write access. So you change the permission like so

adb shell
su 
mount -o rw,remount rootfs / 
chmod 777 /mnt/sdcard 

Upvotes: 1

Related Questions