Re: [android-porting] Re: Porting to S3C2443

2009-12-17 Thread wang jintong
Hi, all : Thank you very much , I have got toolchain . Now, I have some problem.. Like this : target SharedLib: libc (out/target/product/generic/obj/SHARED_LIBRARIES/libc_intermediates/LINKED/libc.so)

Re: [android-porting] Re: Porting to S3C2443

2009-12-17 Thread Michael Trimarchi
wang jintong wrote: Hi, all : Thank you very much , I have got toolchain . Now, I have some problem.. Like this : target SharedLib: libc (out/target/product/generic/obj/SHARED_LIBRARIES/libc_intermediates/LINKED/libc.so)

[android-porting] Re: FileWriter cannot create a file in sdcard with Android SDK 1.6

2009-12-17 Thread yaoming qin
Thanks i have fixed it On Nov 2, 10:57 pm, RaviY yend...@pv.com wrote: http://developer.android.com/reference/android/Manifest.permission.ht... On Oct 19, 12:06 am, CC guoyin.c...@freescale.com wrote: Hi ALL,   I just write a application to write some information to sdcard with

Re: [android-porting] Re: Porting to S3C2443

2009-12-17 Thread wang jintong
Thank you all , I'm so happy today , Because Eclair is running on my board now .. Thank you all for your help .. But ,I still do not know why abort.c is writed like that ..??? On Thu, Dec 17, 2009 at 5:10 PM, Michael Trimarchi trimar...@gandalf.sssup.it wrote: wang jintong wrote: Hi,

[android-porting] Build error : Undefined reference to ComponentInit

2009-12-17 Thread anupama
Hi All, I am working on aac_codec integration to Android platform. Below are the steps I have followed to create the shared lib libomx_core_my.so.This was working for cupcake version but it is not working for donut. 1) I am creating the codec library and component library as static named

[android-porting] Sorry,can't play this video

2009-12-17 Thread Ashu
Hi, We are porting Android1.6 SDK on OMAP 3430 board. While the board is booting correctly showing different Android Application icons on screen, it is unable to display video on screen. We tried to play a file with .mp4 type using Meridian video player, when we start player, it shows the

[android-porting] Problem for porting g-sensor driver

2009-12-17 Thread WoW
Hi, I implemted a g-sensor driver as input device. I could see a node created in \dev\input. I also could get event when i shake the g- sensor. During boot up, i saw following message from user layer. I/SystemServer( 1869): Starting Sensor Service. W/HAL ( 1869): load:

[android-porting] How to add 3rd party library

2009-12-17 Thread tony makkiel
Hi All, I want to include a third party library into my Android make system. I know there is another post related to this in http://groups.google.com/group/android-framework/browse_thread/thread/a8b67be37a52101a/6c4d7bc64f7b0e31?lnk=gstq=+How+to+add+3rd+party+library+#6c4d7bc64f7b0e31

Re: [android-porting] Re: Linking libraries fails

2009-12-17 Thread Digambar Rasal
prefix lib to your library name. - cheers On Wed, Dec 16, 2009 at 7:33 AM, Daniel Cheng yuchen1...@gmail.com wrote: I also have the same issue. Anybody can help me? Thanks~ -- unsubscribe: android-porting+unsubscr...@googlegroups.comandroid-porting%2bunsubscr...@googlegroups.com

[android-porting] Adding different locales to an image

2009-12-17 Thread Ryan Beesley
How do we add other locales? Is there a comprehensive list of available locales for the platform and how do you add the locales to the image so that you can select them on a device? Ryan Beesley Senior QA Engineer -- unsubscribe: android-porting+unsubscr...@googlegroups.com website:

Re: [android-porting] Adding different locales to an image

2009-12-17 Thread Dianne Hackborn
Either put the string resources along side the others for each .apk (see frameworks/base/core/res/res/values* for all the ones in the framework), or use an overlay for your device to add resources to all of the .apks. On Thu, Dec 17, 2009 at 12:38 PM, Ryan Beesley ryan.bees...@swypeinc.comwrote:

RE: [android-porting] Adding different locales to an image

2009-12-17 Thread Ryan Beesley
That's great, very close to what I'm looking for. We are adding our own locale resources for our apk, so I don't think that is a problem for us, but when I build an AOSP build, not all these locales are selectable from the settings. I'm sure I just need to modify some file somewhere that says

Re: [android-porting] Adding different locales to an image

2009-12-17 Thread Robert Greenwalt
Assuming our makefile structures are compatible you need to add your locale to the PRODUCT_LOCALES var in your project makefile. R On Thu, Dec 17, 2009 at 1:54 PM, Ryan Beesley ryan.bees...@swypeinc.comwrote: That's great, very close to what I'm looking for. We are adding our own locale

Re: [android-porting] Re: Kernel Panic - booting

2009-12-17 Thread linux newbie
Hi, STEP 1: I downloaded latest Andriod patched kernel (linux.2.6.27) using git clone. I applied our board specific patch on top of it and compiled it using toolchain arm-none-linux-gnueabi- I also compiled busybox with this same tool chain and booted the system and things were working fine as

[android-porting] Re: Andoird on x86 Recompile with -Xlint:unchecked for details issue

2009-12-17 Thread guru
HI Yi Sun I too faced this problem. In one machine build was successful, but I copied to my system and tried then it stared giving the above problem. I was thinking why this behaviour!. What may be the exact reason? Regards Gururaja B O On Dec 16, 10:59 pm, Yi Sun beyo...@gmail.com wrote: You

[android-porting] /dev files

2009-12-17 Thread shivap
hello all i got android kernel 2.6.27 (downloaded from android git) running on my mainstone II dev.board. now i want to add android over this. when i build android source code i get three images system.img , userdata.img and ramdisk.img. i unpacked system and userdata images using unyaff tool and

[android-porting] Debugging apps with ADB via USB OTG

2009-12-17 Thread Fasil
Hi, I want to debug an application crash with adb for the target OMAP platform running Android donut. At present I m having USB_OTG support in my kernel for my target platform OMAP which has only storage support. The kernel I m using is 2.6.29 for OMAP3530. I need to understand the

[android-porting] Re: /dev files

2009-12-17 Thread jack
Hi, I had the same question before. :) You do not have to create or copy any device node in the /dev directory by yourself. After Android starts, it will automatically create the corresponding device node under /dev. Regards, Jack On Dec 18, 12:39 pm, shivap sshiremath2...@gmail.com wrote: