[android-porting] Re: Ringtones in last build

2009-05-19 Thread Michael Trimarchi
Hi, Luca Belluccini wrote: Nothing to do... Database is not rebuilt... Any hint? On Apr 17, 2:31 am, Dave Sparks davidspa...@android.com wrote: I have the same problem: W/AudioService( 794): MediaPlayer IOException: java.io.IOException: setDataSource failed.: status=0x8000

[android-porting] Re: Ringtones in last build

2009-05-19 Thread Sean McNeil
You need to read frameworks/base/data/sounds/AudioPackage2.mk. Basically, there are 2 sets of audio files now. One for limited flash devices, one for those that have more room. So you have to include the .mk for the set that fits your environment. This would be done in your

[android-porting] Re: Ringtones in last build

2009-05-19 Thread Michael Trimarchi
Hi, Sean McNeil wrote: You need to read frameworks/base/data/sounds/AudioPackage2.mk. Basically, there are 2 sets of audio files now. One for limited flash devices, one for those that have more room. So you have to include the .mk for the set that fits your environment. This would be done

[android-porting] Re: How to make mmc partition read only yet, make /system /data writeable

2009-05-19 Thread Elvis Dowson
Hi Dianne, thanks for the reply. I will try this. BTW, is all this documented somewhere? :-) I would really appreciate it if you could point me to where all this info is located. :-) Elvis Dowson On May 19, 9:14 am, Dianne Hackborn hack...@android.com wrote: /data should be

[android-porting] Soft keyboard

2009-05-19 Thread Michael Trimarchi
Hi all, where can I find why my softkeyboard doesn't show? Michael --~--~-~--~~~---~--~~ unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting -~--~~~~--~~--~--~---

[android-porting] Re: aplay.c

2009-05-19 Thread Claw
Thank you, this is what I did. I have another problem now. I try running the built alsa_aplay, alsa_ctl on the device but with no success. The device simply does nothing. I am using the data and system folders taken from emulator SDK 1.0. My kernel is a is a 2.5.26 which is not take from android

[android-porting] JNI Running

2009-05-19 Thread Kasuko
Ok I have been trying and trying to get a simple JNI program running. This is my source: Run.java: package corey.nativetest; import android.app.Activity; import android.os.Bundle; import android.util.Log; import android.widget.TextView; public class Run extends Activity { private native

[android-porting] What does /system/bin/vold do?

2009-05-19 Thread Elvis Dowson
Hi, What does the /system/bin/vold do? Elvis --~--~-~--~~~---~--~~ unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting -~--~~~~--~~--~--~---

[android-porting] Re: aplay.c

2009-05-19 Thread Ravishankar Haranath
I hope you have used the following; BOARD_USES_GENERIC_AUDIO := false BOARD_USES_ALSA_AUDIO := true BUILD_WITH_ALSA_UTILS := true in your BoardConfig.mk file!! On Tue, May 19, 2009 at 5:17 PM, Claw praveengudisa...@googlemail.comwrote: Thank you, this is what I did. I have another problem

[android-porting] Re: What does /system/bin/vold do?

2009-05-19 Thread Ravishankar Haranath
As far as I can understand, it does the job of a volume manager that is, mounting and unmounting SD/MMC cards and so on. You need to set the rules properly in /system/etc/vold.conf in order for it to work for your needs. On Tue, May 19, 2009 at 6:22 PM, Elvis Dowson elvis.dow...@gmail.comwrote:

[android-porting] Re: What does /system/bin/vold do?

2009-05-19 Thread Androidphan
I can't get it to work. Mountd used to work properly. My sdcard is located at /dev/block/sdc1, how can I set vold.conf to mount my sdcard? On May 19, 5:43 pm, Ravishankar Haranath rav...@gmail.com wrote: As far as I can understand, it does the job of a volume manager that is, mounting and

[android-porting] Help with porting onto i900.

2009-05-19 Thread johno
Hi there. I'm a very big fan of the samsung i900 apart from the small factor of it running windows mobile. I've been reading through this post in particular http://www.modaco.com/content/i9x0-omnia-http-omnia-modaco-com/273025/android-on-i900/. is there anyway of porting android over to the i900

[android-porting] Re: Soft keyboard

2009-05-19 Thread Michael Trimarchi
Hi, Elvis Dowson wrote: Hi Michael, If you use android-1.5 SDK, the new soft keyboard comes up directly. If you click on the google search bar it pops up. Elvis No way, the softkeyboard doesn't appear. I think that is some stupid issue about the configuration or such

[android-porting] Re: Soft keyboard

2009-05-19 Thread Michael Trimarchi
Hi, Michael Trimarchi wrote: Hi, Elvis Dowson wrote: Hi Michael, If you use android-1.5 SDK, the new soft keyboard comes up directly. If you click on the google search bar it pops up. Elvis No way, the softkeyboard doesn't appear. I think that is some

[android-porting] Soft Keyboard stopped unexpectedly...

2009-05-19 Thread ertan...@gmail.com
I am trying to port Android to my Dell Axim x51v. I use the Android master branch and kernel 2.6.29 with my own patches. But I have a strange problem with the soft keyboard. Whenever I focus on a text input field I get the following error as a dialog: The application Android keyboard (process

[android-porting] Re: JNI Running

2009-05-19 Thread fadden
On May 19, 5:30 am, Kasuko kas...@gmail.com wrote: Ok I have been trying and trying to get a simple JNI program running. [...] System.loadLibrary(/data/lib/libRun.so); Use System.load() if you're going to provide a full path. --~--~-~--~~~---~--~~ unsubscribe:

[android-porting] SIM Application Toolkit support - where is it?

2009-05-19 Thread Tony.Mansson
Hi. I am having trouble finding the SAT 1.0 parser in Android 1.5 sources. Can anybody please just point me in the general direction? Thanks. --~--~-~--~~~---~--~~ unsubscribe: android-porting+unsubscr...@googlegroups.com website:

[android-porting] Re: [android-porting]About RILD system

2009-05-19 Thread Song Johnny
to be more, I wonder service layer will keep connecting the rild socket so that the rild daemon listen thread will accept and build the connection, but did that way work inefficiently? On Tue, May 19, 2009 at 2:15 PM, Song Johnny ayi.s...@gmail.com wrote: Hi, Now I am looking RILD system in