Re: [android-porting] Porting of Bluez stack

2010-06-09 Thread Pavan Savoy
i guess all android makefiles under external/.../ directory are called ... the only way you could prevent bluez from building is making BOARD_HAVE_BLUETOOH false ? (or atleast that's what i think ..) On Wed, Jun 9, 2010 at 9:22 AM, Ajith sjce.aj...@gmail.com wrote: Hi all, Our current

Re: [android-porting] Porting of Bluez stack

2010-06-09 Thread Ajith Kamath
Ya I know all makefiles from External are called but I need to trace the calls of make files from build script. Atleast that of Bluez makefile. Also BOARD_HAVE_BLUETOOH param is in Boardconfig.mk file right? Regards Ajith On Wed, Jun 9, 2010 at 11:40 AM, Pavan Savoy pavan.sa...@gmail.com wrote:

Re: [android-porting] Porting of Bluez stack

2010-06-09 Thread Pavan Savoy
On Wed, Jun 9, 2010 at 11:55 AM, Ajith Kamath sjce.aj...@gmail.com wrote: Ya I know all makefiles from External are called but I need to trace the calls of make files from build script. Atleast that of Bluez makefile. Yes this is sort of an eternal question ... we have the whole of build/core

RE: [android-porting] Re: Android on Ubuntu 10.4

2010-06-09 Thread Uhrenfeldt Henrik
Hi Jonathan, If you have libusb installed, you should be able to execute something like: lsusb -v It should list all devices and their USB descriptors.. Do you remember to run fastboot as root? It will not be able to access the usb device as a normal user, unless you put udev rules in place

[android-porting] Re: Text to speech unfunctional

2010-06-09 Thread Uander
*Hi , * *Well , I installed com.svox*.langpack.installer_1.0.1.*apk to my /system/app that actuall install voice data (en_*.bin) files in my /sdcard/svox location .* *Now Mainmenu-settings-Text to speech has install voice data option disabled and other options are enabled now . * *That means

答复: [android-porting] signal of gprs is zero

2010-06-09 Thread bryan.c.hsu
Hi, I think u can check the parameters of the CREG or COPS. It maybe caused by the wrong parameters from BP. Maybe u need to modify ril implementation for these two AT commands. Br. -邮件原件- 发件人: android-porting@googlegroups.com [mailto:android-port...@googlegroups.com] 代表 Weber 发送时间:

RE: [android-porting] signal of gprs is zero

2010-06-09 Thread Uhrenfeldt Henrik
Hi, It seems that the reply to the RIL_REQUEST_GPRS_REGISTRATION_STATE is not formatted properly. The RIL interface for Éclair dictates this implementation: /** * RIL_REQUEST_GPRS_REGISTRATION_STATE * * Request current GPRS registration state * * data is NULL * response is a char ** *

[android-porting] How to run shell commands in Android.mk file?

2010-06-09 Thread Uma Sankar
Hi All, I would like to run some shell commands after building my module can I make Android.mk to run shell script ? For example, I need to copy data.txt file in to LOCAL_MODULE_PATH after build the application. By using the Android.mk file application(server) is able to generated at specified

Re: [android-porting] How to run shell commands in Android.mk file?

2010-06-09 Thread Deva R
It should be documented somewhere, and some quick ref. below. Below Android.mk file copies pvplayer.cfg to system/etc folder http://git.omapzoom.org/?p=platform/external/opencore.git;a=blob;f=Android.mk;h=013e5c8e6ccfc2feab9fb7a61814cc04868f9ebe;hb=p-eclair Lot of commands like print, echo are

[android-porting] please help me,to know about android..

2010-06-09 Thread vinodhini prakash
H... i need to know how to run a simple c++ program on the android emulator...i was using android sdk and eclipse as the IDE... i could run the java programsbut i need to know how to run the c++ program on android 2.2..pls,help me...im very new to android... -- unsubscribe:

Re: [android-porting] please help me,to know about android..

2010-06-09 Thread Ashwin Bihari
What kind of C++ program? All Android applications are written in Java to use the Android framework, I suppose you could write it in C++ if you translated the calls to the framework..what are you trying to accomplish?? -- Ashwin On Wed, Jun 9, 2010 at 5:41 AM, vinodhini prakash

[android-porting] mp4 parser in opencore

2010-06-09 Thread Deva R
Hi PV team, all, Currently i face problem with pv-opencore of eclair 2.1, while playing a clip which accidentally got negative timestamp in its video frames (so, progress bar and audio timeline were seeked infinitely to future). I tried to fix it in video-parser node, by avoiding negative time

[android-porting] Re: Text to speech unfunctional

2010-06-09 Thread Uander
Its works out for me now . Cheers : Uander On Wed, Jun 9, 2010 at 4:58 PM, Uander uandro...@gmail.com wrote: Hello , Proceeding ahead on this issue . Now I generated a sample application mytest.apk using attached code mytest.java . I follow step mentioned in

[android-porting] Re: How to run shell commands in Android.mk file?

2010-06-09 Thread bridgette
might try the mm command how I have used it is as follows: $ cd to the specific directory of your Android.mk $ source $ANDROID_HOME/build/envsetup.sh $ mm TARGET_PRODUCT=target (or you can leave blank if using the emulator) then open the adb shell and cd to where they are and run them.

Re: [android-porting] Re: Help need for writing the asound.conf file Sigma 8654

2010-06-09 Thread XingChao Wang
hi, i also met such issue,use latest alsa-lib and make sure /dev/snd/* right permissions. thanks --wang xingchao 2010/6/9 pramod pramodkum...@gmail.com After changing the asound.conf slightly i am getting a permission denied error now. Can anyone please tell me how to change the group

Re: [android-porting] Porting of Bluez stack

2010-06-09 Thread Surendra Ippagunta
Hi Ajith, Android Java Classes use JNI framework to invoke the native C code. There is JNI wrapper for BlueZ stack and I think you should insert your stack here. http://www.netmite.com/android/mydroid/1.6/frameworks/base/core/jni/android_bluetooth_RfcommSocket.cpp Regards Surendra

[android-porting] Android GPS

2010-06-09 Thread bridgette
I have created a shared library, libgps.so that implements the gps.h in order to use a GPS receiver with Android and the libgps.so file was installed into the system/lib when the build completed. I get the following from logcat...libhardware_legacy( 772): no GPS hardware on this device. In the

Re: [android-porting] Android GPS

2010-06-09 Thread Deva R
probably it expects a library libgps.default.so or libgps.hwname.so you can check hw_get_module() call in ./hardware/libhardware/hardware.c http://git.omapzoom.org/?p=platform/hardware/libhardware.git;a=blob;f=hardware.c;h=3a23b1f6b71eb576c6f2f7161503e69e821b8083;hb=p-eclair You can add more

RE: [android-porting] Re: Android on Ubuntu 10.4

2010-06-09 Thread Uhrenfeldt Henrik
Hi Jonathan, I believe it will suffice to explicitly state the path to fastboot with sudo - ie. # sudo /path/to/fastboot I would say that depending on your setup it may be a bad idea to just copy the fastboot binary into /usr/local/bin. If you update to a newer SDK (and thereby newer

[android-porting] Android display refresh problem.

2010-06-09 Thread wangdi.leo
Hi all, We are porting Android 2.1 on linux FC2 now, and we have a display refresh problem. Once there is a refresh action on the screen, the window layers all display from top to button, and the refresh is very slow. We have found the bottleneck is the function scanline() in the