[android-developers] Re: How use root permission

2009-09-17 Thread Francesco Pace
Yeah, with adb remount my program works correctly. But If I want set root permission at my simple application (File Browser), How can I do? Thanks... 2009/9/16 cs_post...@hotmail.com cs_post...@hotmail.com Running the mount command from a shell will likely show that /system is mounted

[android-developers] Re: How use root permission

2009-09-17 Thread Roman ( T-Mobile USA)
IF you want to set root permission with your app, the application has to be started as root. -- Roman Baumgaertner Sr. SW Engineer-OSDC ·T· · ·Mobile· stick together The views, opinions and statements in this email are those of the author solely in their individual capacity, and do not

[android-developers] Re: How use root permission

2009-09-17 Thread Chris Stratton
Your problem is not in setting root permission, but in trying to do something that root permission does not directly enable, such as writing to a read-only file system. To do that your program will have to remount the filesystem read/write, or you will have to change the system startup scripts

[android-developers] Re: How use root permission

2009-09-16 Thread cs_post...@hotmail.com
Running the mount command from a shell will likely show that /system is mounted read-only as per default android setup, unless you've changed that in the process of rooting the phone. The exact syntax of the (somewhat non-standard?) mount command to use for remounting it read/write is not