[android-porting] How to get Google apps and build in system?

2009-11-30 Thread Barry.Tan
Hi, I want to know how to license google apps( Gmail, G map, youtube... ). And want to build in the system be a default application. Please let me know, HOW to license and HOW to get application source? -- unsubscribe: android-porting+unsubscr...@googlegroups.com website:

[android-porting] Re: Multi-touch on Eclair

2009-11-30 Thread sparq
Hi, I study the multi-touch protocol and eclair framework. The framework doesn't support ABS_MT_TRACKING_ID event type. But more new multitouch devices can support tracking in hardware, they can report each contact ID and status (down/up). They doesn't need framework to handle the tracking issue.

[android-porting] Re: LOCAL_SHARED_LIBRARIES and LOCAL_LDLIBS

2009-11-30 Thread allstars
RaviY thanks for your explanation also i found that LOCAL_LDLIBS in mydroid can only work for HOST_SHARED_LIBS but not for TARGET SHARED LIBS thanks On Nov 30, 11:52 am, RaviY yend...@pv.com wrote: Libraries that are linked via LOCAL_LDLIBS will not have any dependencies generated for them.

[android-porting] Android.mk rule to build .ko's

2009-11-30 Thread pavan savoy
Hi, I have been through the archives there was a topic which started out for this question, ended with an answer to something else !! Is there a rule where-in we can provide a KER_DIR and (over-ride the CC setting) so that android allows us to build a kernel object ? Would be grealty helpful for

Re: [android-porting] Re: Multi-touch on Eclair

2009-11-30 Thread Dianne Hackborn
It supports these devices, it just currently doesn't take advantage of the additional information available about the tracking IDs. I don't have a schedule for when that might be added. On Mon, Nov 30, 2009 at 6:26 PM, sparq sparq1...@gmail.com wrote: Hi, I study the multi-touch protocol and

Re: [android-porting] Re: how is framework-res.apk loaded?

2009-11-30 Thread Dianne Hackborn
My suggestion: please don't. This way lies lots of difficult to maintain patches, a good chance of subtle bugs that cause problems for applications, and other bad things. Please try to investigate any other approach for going down this road. On Sun, Nov 29, 2009 at 5:35 PM, James Wang

Re: [android-porting] Re: Multi-touch on Eclair

2009-11-30 Thread Abhinayak Mishra
So, Eclair, actually uses the software in UI framework to track IDs internally ? What happens when a person presses down on the touch panel, keeps one finger pressed, but lifts up and presses the second finger intermittently? the ids keep on growing till all the fingers are lifted up or the second

[android-porting] How to exchange the R,B order for RGBA8888 format

2009-11-30 Thread William
Hi I have realized a H/W copybit in cupcake version, because my H/W platform only supports the BGRA format, so I have to exchange the R,B order for RGBA in format.cpp of pixelflinger and exchange the R,B order in skcolorpriv.h of skia. After doing these, copybit performs correctly, but when