[android-developers] Re: Deployment of native C library

2009-01-05 Thread shimo...@gmail.com
Hi, Do you have an ADP1 device (developer phone) ? I read somewhere something like this" "su is there on the device, but ro.secure is set to 1, so you can not do "adb remount"" Thanks. On Jan 5, 11:53 am, "Anonymous Anonymous" wrote: > adb remount > > then try again > > On Sun, Jan 4, 2009 a

[android-developers] Re: Deployment of native C library

2009-01-05 Thread Anonymous Anonymous
adb remount then try again On Sun, Jan 4, 2009 at 12:45 PM, shimo...@gmail.com wrote: > > Hi, > > Did as you suggested from my Windows PC (using adb shell). > The 'mount' command did not yield any error. > But - saw no change in the \system attributes (using ls -l). > And - when I try to do "adb

[android-developers] Re: Deployment of native C library

2009-01-03 Thread shimo...@gmail.com
Hi, Did as you suggested from my Windows PC (using adb shell). The 'mount' command did not yield any error. But - saw no change in the \system attributes (using ls -l). And - when I try to do "adb push MySans.ttf \system\fonts\MySans.ttf" I get an error message: "failed to copy ...: read-only fil

[android-developers] Re: Deployment of native C library

2009-01-02 Thread Joel Knighton
Issue the commands in this order (from a terminal on the device, otherwise change to use adb shell). $su #mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system Add/change anything you need, then revert to read only. $su #mount -o remount,ro -t yaffs2 /dev/block/mtdblock3 /system On Fri, Ja

[android-developers] Re: Deployment of native C library

2009-01-01 Thread Margaret
add sudo where you do mount . mawei...@gmail.com 13585201588 2009/1/2 shimo...@gmail.com : > > Hi, > > Thanks ! > > Where do I issue this command from ? > > When I do this from PTerminal on my Android device it hangs, then > issues > a warning box saying: > > "Activity pTerminal (in applicati

[android-developers] Re: Deployment of native C library

2009-01-01 Thread shimo...@gmail.com
Hi, Thanks ! Where do I issue this command from ? When I do this from PTerminal on my Android device it hangs, then issues a warning box saying: "Activity pTerminal (in application pTerminal) is not responding"" Do you have a Dev Phone ? Thanks. On Jan 2, 3:39 am, Joel wrote: > Sounds as

[android-developers] Re: Deployment of native C library

2009-01-01 Thread Joel
Sounds as if you don't have root. Did you issue a su command first? On Jan 1, 6:11 pm, "shimo...@gmail.com" wrote: > Hi, > > Tried that on my Dev Phone, and got "mount: operation not permitted" > > Can you tell me why ? > > TIA > > On Nov 17 2008, 11:48 am, "li chen" wrote: > > > You can use a

[android-developers] Re: Deployment of native C library

2009-01-01 Thread shimo...@gmail.com
Hi, Tried that on my Dev Phone, and got "mount: operation not permitted" Can you tell me why ? TIA On Nov 17 2008, 11:48 am, "li chen" wrote: > You can use adb shell to remount /system and try again: > mount -o remount rw /system > > -freepine > --~--~-~--~~~---~-

[android-developers] Re: Deployment of native C library

2008-11-17 Thread li chen
You can use adb shell to remount /system and try again: mount -o remount rw /system -freepine On Mon, Nov 17, 2008 at 5:08 PM, hackbod <[EMAIL PROTECTED]> wrote: > > Sorry, currently native code is not supported in the SDK. > > On Nov 16, 8:05 pm, adlaiti <[EMAIL PROTECTED]> wrote: > > I have a

[android-developers] Re: Deployment of native C library

2008-11-17 Thread Volker Gropp
Hi, your dont need your library in /system/lib, use System.load() as i already described in http://groups.google.com/group/android-developers/msg/86f49546bbab0cad Regards Volker Gropp On Nov 17, 5:05 am, adlaiti <[EMAIL PROTECTED]> wrote: > I have a Java application that uses JNI to call a nat

[android-developers] Re: Deployment of native C library

2008-11-17 Thread Anonymous Anonymous
tried adb remount ? This also will not work? oops that will be sad :(,coz i also have one to go not yet ready :D On Mon, Nov 17, 2008 at 2:38 PM, hackbod <[EMAIL PROTECTED]> wrote: > > Sorry, currently native code is not supported in the SDK. > > On Nov 16, 8:05 pm, adlaiti <[EMAIL PROTECTED]> w

[android-developers] Re: Deployment of native C library

2008-11-17 Thread hackbod
Sorry, currently native code is not supported in the SDK. On Nov 16, 8:05 pm, adlaiti <[EMAIL PROTECTED]> wrote: > I have a Java application that uses JNI to call a native C library > (.so). > This application works fine with an older version of the SDK and > emulator. > The library was copied to