[android-porting] Re: RunIfNotReady crashes

2010-06-02 Thread HV
Thanks Ravi, i Fixed this last night. The issue was that pComponentPrivate was not being initialized. Now, I'm no longer seeing a crash and my component is being asked to go into executing stage. PS: Glad that someone from PV is monitoring this list. Best regards HV On Jun 2, 5:33 am, RaviY

[android-porting] How does Pattern lock prevents screen lock from being displayed

2010-06-02 Thread Soumya
Hi, We know that if Pattern Lock is enabled, screen lock is not displayed. But can someone point me out the java file and the function which decides whether to display the pattern lock or screen lock. Note: Screen lock means the lock where we have to slide the bar to unlock the phone. Thank

Re: [android-porting] Android Porting in 2.6.32 kernel

2010-06-02 Thread Ashwin Bihari
Anurag, You're doing it backwards..the Eclair version of Android is based on the 2.6.32 Kernel, so you'll want to grab that first. Then you should add the DaVinici level BSP support into that Kernel. Extracting the Android-specific patches from an existing tree and applying it another tree is a

[android-porting] Verify user using google account details

2010-06-02 Thread Soumya
Hi, I am developing an application wherein the user has to enter the user name and password of Google account to get verified. If verified as Google user then the user can use my application. Is there any class or sample code in Android which does the same thing? Thank you, Soumya --

Re: [android-porting] Verify user using google account details

2010-06-02 Thread Deva R
Have seen below option in eclair menu.. Menu - DevTools - Google Login Service see if this's close to your requirement.. http://git.omapzoom.org/?p=platform/packages/apps/Browser.git;a=blob;f=src/com/android/browser/BrowserActivity.java#l256 On Wed, Jun 2, 2010 at 5:18 PM, Soumya

[android-porting] Android Porting - Adding new BSP

2010-06-02 Thread Ansu
Hi All, Scenario: I have linux 2.6.21 kernel, which is ported to s3c2416 board and works just fine. Problem: I want android to be ported to s3c2416 and it should run too. Tryout: I cross compiled Android and write to the board. I end up with this error. Uncompressing

[android-porting] Need help about porting android 2.1 to s3c6410

2010-06-02 Thread jkeqiang
I am porting android 2.1 to s3c6410. I know this is something wrong about my ALSA driver. but I am not sure it's the reason that I can see none of the application after the linux kernel running. Is there any suggestion? And where can I get more help about anroid porting on S3C6410? sorry for

[android-porting] Android Eclair

2010-06-02 Thread Björn Lustig
I've got Cupcake running fine on a linux 2.6.29/28 kernel on a board that has binder and all the other stuff in it. Should I be able to just build Eclair from android sources and use that with the exact same kernel binary? Or will I need to make kernel changes to make Eclair work? --

[android-porting] Re: Changing factory default settings?

2010-06-02 Thread Jay Slater
For future reference, defaults for some things, at least, are held in SettingsProvider/res/values/defaults.xml. --Jay On May 27, 9:34 am, Jay Slater slater@gmail.com wrote: I'm currently working on a device which doesn't have hardware accelerated graphics. At the moment, we put a comment

[android-porting] Re: Need help about porting android 2.1 to s3c6410

2010-06-02 Thread kaansake
Samsung Galaxy Spica I5700 has the same processor, so you can get sources of platform and kernel here http://opensource.samsungmobile.com/index.jsp?page=3 ,it may helps you. By the way, LeshaK on samdroid.net has been released eclair for I5700 with his own kernel modifications. Sources are there

[android-porting] Re: Need help about porting android 2.1 to s3c6410

2010-06-02 Thread kaansake
i've just discovered samsung sources for i5700 (it has the same cpu). there are alsa drivers for android. -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

[android-porting] Re: Data connection via cell modem (GPRS)

2010-06-02 Thread ran
Hello Will the result of the implementation work reflected in this thread be released for the Android community either as an extension to the generic RIL or as an alternative RIL implementation ? Please, any howto!!! On 2 июн, 16:40, MM stich mstic...@gmail.com wrote: Well it is working now,

Re: [android-porting] How does Pattern lock prevents screen lock from being displayed

2010-06-02 Thread Dianne Hackborn
It doesn't prevent the screen lock from being displayed, it IS the screen lock with a UI appropriate to how the user needs to unlock the device. This is all implemented in the lock screen UI that is driven by PhoneWindowManager. On Wed, Jun 2, 2010 at 2:27 AM, Soumya soumyakanti...@gmail.com