[android-developers] Re: Need help in compiling android source on ubuntu 9.10

2009-12-21 Thread Paweł Kapała
Hi! I successfully built android on Ubuntu 9.10 (a week ago or so). Did you take steps as described here http://source.android.com/download ? Also, are you using 32-bit, or 64-bit system? I'm not a platform developer, but it looks like something in your system is missing or you have something

[android-developers] Re: Base64.decodeBase64

2009-12-22 Thread Paweł Kapała
I've used public domain Base64 encoder which is available here (in case of licensing issues): http://iharder.sourceforge.net/current/java/base64/ It is very lightweight (single class), customizable and full featured. -- Best regards, Pawel On Dec 22, 7:26 am, joebowbeer joe.bowb...@gmail.com

[android-developers] Re: Bluetooth Developers Guide and Bluetooth Sample Code

2009-12-22 Thread Paweł Kapała
Nice howto! Thanks a lot. It surely be useful. On Dec 22, 11:25 am, rezar rraw...@gmail.com wrote: This is very good. I hope the emulator can support Bluetooth in the near future. Now debugging bluetooth related things is very hard, because we need to port each build to the real device and

[android-developers] Re: RelativeLayout

2009-12-22 Thread Paweł Kapała
RelativeLayout is a different kind of layout :) Seriously if you'd like to layout all your components in a way: make component A left to component B and below Component C it is the best way to achieve it with RelativeLayout. But also RelativeLayout is a good way to optimize your view hierarchy,

[android-developers] Re: Finding all supported Intents.

2009-12-22 Thread Paweł Kapała
As far as I know it is not possible to capture all the supported intents. You have to know the specific action name, or the class name if you're sending intent locally. So I guess it is not possible to implement some kind of Intent sniffer on the device. You may find some (not all) of the