Re: [android-porting] Re: Disable the screen lock when the Android OS startup

2010-07-08 Thread Deva R
Hi Pete, Thanks for sharing this., it helps a lot while debugging/developing.. Regards, Deva On Wed, Jul 7, 2010 at 6:42 PM, Pete mrpgrif...@gmail.com wrote: I disabled the lock screen on my eclair build my commeting out showLocked() in KeyguardViewMediator.java. As far as I could tell

Re: [android-porting] Re: Disable the screen lock when the Android OS startup

2010-07-07 Thread Deva R
The closest i've done is - to make system remain unlocked # sqlite3 /data/data/com.android.providers.settings/databases/settings.db sqlite update system set value=-1 where name=screen_off_timeout; sqlite .quit But it still wont prevent system to boot with locked screen., we are either missing an

Re: [android-porting] Re: Disable the screen lock when the Android OS startup

2010-07-07 Thread suyog tajne
I too have requirement which needs android to boot up with screen unlocked. can somebody point to sqlite file to change? thanks On Wed, Jul 7, 2010 at 1:48 PM, Deva R r.deva...@gmail.com wrote: The closest i've done is - to make system remain unlocked # sqlite3

[android-porting] Re: Disable the screen lock when the Android OS startup

2010-07-07 Thread Pete
I disabled the lock screen on my eclair build my commeting out showLocked() in KeyguardViewMediator.java. As far as I could tell there isn't a sql configuration option which does this. regards, Pete. diff --git a/phone/com/android/internal/policy/impl/ KeyguardViewMediator.java

[android-porting] Re: Disable the screen lock when the Android OS startup

2010-07-07 Thread Aadorn
To disable lock screen only at system startup, instead of comment out showLocked(), I commented out doKeyguard() inside the function onSystemReady() in the same file KeyguardViewMediator.java If there is a configuration option that does this, please let me know too. Thanks, Aad On Jul 7, 1:50 

[android-porting] Re: Disable the screen lock when the Android OS startup

2010-07-06 Thread CMF
anybody knows? On Jul 3, 1:08 am, CMF manf...@gmail.com wrote: HI all, I want to make my app launched when the Android OS startup. I can make it, but when the Android OS startup, the screen lock is launched, how can I remove the screen lock launch so that I can get into my app directly? I