Re: [android-porting] Re: Alarm Clock Localization query

2010-05-03 Thread Robert Greenwalt
It depends alot on what device you're using. The strings are coming from the DateFormatSymbols class and our core libraries add and remove big lumps of internationalization data from build config to build config (some devices are us-centric, some are europe-centric, some asia-centric, some world,

Re: [android-porting] Re: Disable hardware codecs

2010-05-03 Thread Ricardo Martinez
Hi Uander, You can disable Hardware acceleration by editing this file: platform/vendor/ti/zoom2/BoardConfig.mk But I think it's better to find the root cause of the issue, probably the first step could be to verify if the audio format is actually supported, take a look at the supported OMX roles

Re: [android-porting] Run android apps on ubuntu

2010-05-03 Thread Deva R
> Now how > do I run android applications on this(Ubuntu) without using the > Android SDK. Android apps needs dalvik VM to run., you should either need dalvik VM running on a system or as emulated by SDK., i dont have much idea, but some ppl able to run some simple .dex apps natively on ubuntu..

Re: [android-porting] UUID association problem

2010-05-03 Thread Harish V
Thanks for sharing the code. My interface file is similar to what you have (I just used the pv_omx_interface.cpp as the template). But, who is supposed to create an instance of the class TIOMXInterface? Specifically for my case in, _OMX_MasterInit, I see that there are 2 cores (my vendor specific

[android-porting] Re: AV sync issue in real media porting

2010-05-03 Thread kiran
Hi Ravi, Thanks for the reply. Inorder to avoid this timestamp calculation and narrow down the issue, we tried seeking from start of the file. In that case also we see AV sync mismatch and the audio is lagging behind video. i.e, we can hear the audio starting Late. However if we pause and seek to s

[android-porting] Run android apps on ubuntu

2010-05-03 Thread suhas
Hi. I have built the android kernel for my platform of ubuntu. Now how do I run android applications on this(Ubuntu) without using the Android SDK. Could anyone kindly advise me on this issue.Any type of android applilcation is acceptable as long as I get to run it. Thank you -- unsubscribe

[android-porting] Re: lightweight minimalist hardware for android

2010-05-03 Thread Prakash A S
Friendly ARM's Mini2440 -Prakash On Apr 30, 11:39 pm, Ronnyek wrote: > I suspect android MAY be overkill, but are there any lightweight/ > inexpensive hardware that will do the minimal functionality etc? I'd > like to see about the viability of using android in small, low power > embedded device

Re: [android-porting] UUID association problem

2010-05-03 Thread Deva R
>not able to get my OMX_Init( ) function pointer We populate all our pointers in a derived OMXInterface class.. you can refer our omx core plugin code at http://git.omapzoom.org/?p=platform/hardware/ti/omx.git;a=tree;f=core_plugin >is there a way to close an issue? you meant OMX_Init() issue or U

Re: [android-porting] UUID association problem

2010-05-03 Thread Harish V
Hi Deva, Yes, sorry I forgot to respond. This is *solved* & yes I had misread the .pdf which explicitly says that I have to use that OMX_INTERFACE_ID. I'm past this problem and tackling another one (not able to get my OMX_Init( ) function pointer). btw, is there a way to close an issue? Thanks f

Re: [android-porting] lightweight minimalist hardware for android

2010-05-03 Thread Deva R
Hi, have u decided?? beagleboard is popular community choice., fyi - you can refer below portals.. http://elinux.org/BeagleBoard#Android http://elinux.org/Android_on_OMAP#Real_hardware On Sat, May 1, 2010 at 12:09 AM, Ronnyek wrote: > I suspect android MAY be overkill, but are there any lightwei

Re: [android-porting] UUID association problem

2010-05-03 Thread Deva R
Hi, is this resolved? we never used to change the OSCL UUID from what's specified in OMX integration guide., and populate our own OMX llibrary.. from OpenCore - OMX Core Integration Guide, "The OsclUuid provided is the unique API ID that identifies the OMX core interface and cannot be modified: (

[android-porting] Re: Disable hardware codecs

2010-05-03 Thread Deva R
[+porting list] you can delete ./system/etc/01_Vendor_ti_omx.cfg in your file system, so as to use SW codecs from PVOMX components (picked up by ./system/etc/pvplayer.cfg). On Mon, May 3, 2010 at 6:23 PM, Uander wrote: > Hello   , > > I have a file a audio/3gp file that I can play in eclair-2.1

[android-porting] Japanese IME option enable

2010-05-03 Thread Rakesh Kumar
Hi, Please tell me "How to enable Japanese IME on andoird 2.1?". Do we need to build the source code with some flag? Thanks & Regards Rakesh -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

Re: [android-porting] Re: Could I skip the droiddoc make to minimize the build time?how to?

2010-05-03 Thread Ashwin Bihari
Get an ever faster computer..:P Regards -- Ashwin On Sun, May 2, 2010 at 10:38 PM, Chih-Wei wrote: > Use a better machine? :p > > My dev machine is core i7 3.3G, 8GB ram. > It took about 15min to do a full rebuild. > But I think it still too slow. > > Any way to improve it is appreciated. > >

[android-porting] Disable hardware codecs

2010-05-03 Thread Uander
Hello , I have a file a audio/3gp file that I can play in eclair-2.1 emulator but its throwing error on my Zoom2 device says "Sorry , this player doesn't support this type of audio file " . emulator will be using s/w codecs . while zoom2 has h/w codecs . The logic of MMM framework is like if

[android-porting] Re: Alarm Clock Localization query

2010-05-03 Thread Uander
Can anyone on this mailing list help me out ?? On Fri, Apr 30, 2010 at 6:48 PM, Uander wrote: > Hi All , > > Issue I mentioned here works fine in cupcake android 1.5 . > it refers to a OHA issue 3985: > > > http://code.google.com/p/android/issues/detail?id=3985 > > Please suggest how to fix it

Re: [android-porting] Re: opencore test for 3gp file play

2010-05-03 Thread Uander
On Tue, Apr 27, 2010 at 3:33 AM, RaviY wrote: > I was able to play the clip fine using the pvplayer_engine_test test > executable. > > Regarding the GUI app, this looks like a missed option in > MediaFile.java. The details: > - In mediascanner.cpp, the file is scanned, and it's mimetype is set >

Re: [android-porting] keyboard refresh issue

2010-05-03 Thread Deva R
You can track UI level input events at, ./frameworks/base/libs/ui/EventHub.cpp link: http://git.omapzoom.org/?p=platform/frameworks/base.git;a=blob;f=libs/ui/EventHub.cpp You can also check at kernel side keypad driver, if events are sent properly.. On Sat, May 1, 2010 at 11:48 AM, Rakesh Kum