[android-porting] Tethering service

2010-10-29 Thread Thiru
Hi Robert, I just want to know when the Tethering service will getting invoked for portable hotspot? I just try to understand how the tethering service playing a role on portable hotspot. How the sendTetherStateChangedBroadcast() private function is getting invoked. I am seeing some

[android-porting] Canvas.drawImage too slow?

2010-10-29 Thread 某因幡
my code is like this, holder is a SurfaceHolder, and colors is a int[]: canvas = (*env)-CallObjectMethod(env, holder, mid_SurfaceHolder_lockCanvas); // JNI_TRUE for ARGB and JNI_FALSE for RGB565 (*env)-CallVoidMethod(env, canvas, mid_Canvas_drawBitmap,

[android-porting] Stuck on ANDROID boot animation screen in ARM

2010-10-29 Thread yogi
Hi All I am porting froyo2.2.1 to 2.6.34.7 kernel on ARM board. I can see the ANDROID bootanimation is running on the screen, but it stuck there and restart after some time. Following messages keep repeating. Following are logcat messages - - beginning of /dev/log/main I/DEBUG ( 848):

[android-porting] Sensor Driver implementation

2010-10-29 Thread lobi
Hello, I am quite new to android development using sensor interface. I am currently working on a sensor driver, which can detect proximity and grip. In Android sensors.h file only proximity sensor is available so far. So my question is now how to deal with grip events. Can these events be

[android-porting] Audio port requirements

2010-10-29 Thread A
The CDD says a device must support audio out, but is not specific. I assume that means a device can support whatever port and format they want? -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

Re: [android-porting] Stuck on ANDROID boot animation screen in ARM

2010-10-29 Thread Ashwin Bihari
Your answer is right in the log at: W/dalvikvm( 898): No implementation found for native Lcom/android/ server/BatteryService;.native_update ()V W/dalvikvm( 898): threadid=7: thread exiting with uncaught exception (group=0x40020828) E/AndroidRuntime( 898): *** FATAL EXCEPTION IN SYSTEM PROCESS:

Re: [android-porting] Re: Execute Android native executable in Debian - No such file or directory

2010-10-29 Thread Deva R
or u can make helloworld application 100% statically linked add '-static' to your cflags in make file. gcc -static helloworld.c On Thu, Oct 28, 2010 at 9:14 PM, Hubert hflis...@gmail.com wrote: On Oct 28, 8:52 am, KevinD wenkai...@gmail.com wrote: I have built a helloworld application using

Re: [android-porting] Stuck on ANDROID boot animation screen in ARM

2010-10-29 Thread Deva R
just check group archive, this battery service issue is a common problem for all new platforms., repost from http://groups.google.com/group/android-porting/browse_thread/thread/521b64a279388cee/ddc2a537ada2c5b9 E/AndroidRuntime( 883): java.lang.UnsatisfiedLinkError: native_update

Re: [android-porting] Re: Execute Android native executable in Debian - No such file or directory

2010-10-29 Thread dipti seni
*www.ksrista.com* http://www.ksrista.com/ *search your life partner* -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

Re: [android-porting] Stuck on ANDROID boot animation screen in ARM

2010-10-29 Thread dipti seni
*www.ksrista.com* http://www.ksrista.com/ *search your life partner* -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

Re: [android-porting] Canvas.drawImage too slow?

2010-10-29 Thread dipti seni
*www.ksrista.com* http://www.ksrista.com/ *search your life partner* -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

Re: [android-porting] Stuck on ANDROID boot animation screen in ARM

2010-10-29 Thread dipti seni
*www.ksrista.com* http://www.ksrista.com/ *search your life partner* -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

Re: [android-porting] Tethering service

2010-10-29 Thread dipti seni
*www.ksrista.com* http://www.ksrista.com/ *search your life partner* -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

Re: [android-porting] Re: Execute Android native executable in Debian - No such file or directory

2010-10-29 Thread dipti seni
*www.ksrista.com* http://www.ksrista.com/ *search your life partner* -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

Re: [android-porting] Audio port requirements

2010-10-29 Thread dipti seni
*www.ksrista.com* http://www.ksrista.com/ *search your life partner* -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

[android-porting] Re: Accessing hw decoders on Android Froyo

2010-10-29 Thread Deva R
If i want to access hw decoders which is the best approach other than OpenCore? stagefirght. and highlight of froyo is - stagefright is made as default media framework (you need to explicitly enable opencore if u want) And one more thing what is the difference between OMX and IOMX? Is

Re: [android-porting] Re: Android application with JNI Libs build into system.img ?

2010-10-29 Thread dipti seni
*www.ksrista.com* http://www.ksrista.com/ *search your life partner* -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

Re: [android-porting] Re: Android application with JNI Libs build into system.img ?

2010-10-29 Thread Deva R
Keep vendor.apk in /system/app (notee that it wont work at /system/ level), so it will be automatically installed by package manager on first boot, and extract the associated libraries to /data/data/vendor-apk/lib folder . This shou;d've worked good. but, if you expect vendor.so to go with rest

[android-porting] AudioFlinger::getInputBufferSize() -- what does it return?

2010-10-29 Thread akoaoka
Hi I have a question about AudioFlinger::getInputBufferSize(). What is it suppose to return? Looking at the implementation, it returns mAudioHardware-getInputBufferSize() which means it reports the input buffer size supported by the current hardware with default configuration (yes/no?) However,

[android-porting] Starting on android...where to start.

2010-10-29 Thread ajitabh saxena
Hi All, what is the best place to find android documentation? Any pointers are highly appreciated. Please advice. -- Aji -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

[android-porting] Acclerating Graphics Using CopyBit on froyo.

2010-10-29 Thread ajitabh saxena
Hi All, I am very new to Android and now trying to accelerate the graphics using copybit and I used the ashmem reference implementation to start. My problem The memory that I get from my software stack(The memory should be created using one of our APIs if we want to do any