[android-developers] Re: push apk fails saying read only filesystem

2008-09-10 Thread hackbod
You shouldn't use adb push at all, you should use adb install to install applications. Okay, technically you -can- push to /data/app, but this is not the normal way things are installed and doing this can cause inconsistent behavior. And /data/app-private is not anything you should be touching a

[android-developers] Re: push apk fails saying read only filesystem

2008-09-09 Thread Max Stirling
I was under an impression that we need to push .apk packges to /system/app Thnxs for the info. /data/app-private is the location for pushing private apps. On 9/9/08, Romain Guy <[EMAIL PROTECTED]> wrote: > > Where are you pushing the files? They should be pushed in /data, not > /system. > > On

[android-developers] Re: push apk fails saying read only filesystem

2008-09-09 Thread Romain Guy
Where are you pushing the files? They should be pushed in /data, not /system. On Tue, Sep 9, 2008 at 12:29 PM, vic <[EMAIL PROTECTED]> wrote: > > i have a few apk packages that I want to push on the emulator. > > the push fails saying that the filesystem is a read only file system. > > Some backg