[android-porting] Re: Disable lock screen and start application just after booting Android

2013-02-26 Thread Zoltan Kuscsik
Hi, you can set your application category to HOME and replace the default Launcher. To disable the lock screen you will need to toggle the Settings.System.LOCKSCREEN_DISABLED value in the settings database. You can achieve this by: 1. hacking the DatabaseHelper.java in framework/base/... 2. ed

[android-porting] Re: Disable lock screen and start application just after booting Android

2013-03-06 Thread Alex
Thank you very much, it works great !!! :) But I have another problem, when i'm connecting to my board, i'm not ROOT on the android shell, there is a way to have root rights ? Le mardi 26 février 2013 20:01:11 UTC+1, Zoltan Kuscsik a écrit : > > Hi, > > you can set your application category to

[android-porting] Re: Disable lock screen and start application just after booting Android

2013-03-06 Thread Alex
I've found a solution. I've changed the init.rc where service console /system/bin/sh i've modified user and group to root ! Le mercredi 6 mars 2013 09:50:45 UTC+1, Alex a écrit : > > Thank you very much, it works great !!! :) > > But I have another problem, when i'm connecting to my board, i'm no

[android-porting] Re: Disable lock screen and start application just after booting Android

2013-03-06 Thread Zoltan Kuscsik
Hi, you need ro.secure=0 have in your device /default.prop file to be able to get a root shell using "su". By default, adb shell will drop you into a shell without root permission. You can change this default behavior using the command: # adb root This will normally work only on engineeri

[android-porting] Re: Disable lock screen and start application just after booting Android

2013-03-11 Thread Alex
Thank you for your response, it works great ! I have again a question... :s I'm searching to remove the navigation bar on the bottom. I'm on ICS 4.0.3. I naviguate in folders /frameworks/base/packages/SystemUI/... but I really don't find where to remove the navigation bar (i'm a litte lost with s

[android-porting] Re: Disable lock screen and start application just after booting Android

2013-08-13 Thread Sukhwinder Pal
Dear Alex, Do I need to simply replace "user shell" with "root shell" in init.rc .. or is there something more to be added / deleted from the script pl. confirm / inform ASAP. rgds, sp On Wednesday, March 6, 2013 10:00:26 PM UTC+5:30, Alex wrote: > > I've found a solution.

[android-porting] Re: Disable lock screen and start application just after booting Android

2013-08-22 Thread Pratik Rathod
You need to replace "user shell" with "user root". take a look on Android's init language. -Pratik On Tuesday, 13 August 2013 08:40:16 UTC+5:30, Sukhwinder Pal wrote: > > Dear Alex, > > Do I need to simply replace "user shell" with "root shell" in init.rc > .. or is there something

[android-porting] Re: Disable lock screen and start application just after booting Android

2013-08-22 Thread Pratik Rathod
Hi Alex, Hacking the database or starting application with permissions is not a good way. You can boot with unlocked screen by changing in AOSP in file. You can take reference of this link for required changes http://www.omappedia.com/wiki/Android_How-tos#Booting_with_Unlocked_Screen Moreover,

[android-porting] Re: Disable lock screen and start application just after booting Android

2014-01-05 Thread Daniel Lukashevich
I think it is enough to update the following value in SettingsProvider: false in* frameworks/base/packages/SettingsProvider/res/values/**defaults.xml* Regards, Dan пятница, 22 февраля 2013 г., 14:09:25 UTC+3 пользователь Alex написал: > > Hi, > > I'm working on porting Android on a board and

Re: [android-porting] Re: Disable lock screen and start application just after booting Android

2013-08-23 Thread Sukhwinder Pal
Thanks to all for the useful information & inputs. Thanks a lot!! rgds, Sukhwinder On Thu, Aug 22, 2013 at 5:57 PM, Pratik Rathod wrote: > Hi Alex, > > Hacking the database or starting application with permissions is not a > good way. > You can boot with unlocked screen by changing in AOSP in fi