[android-porting] Re: In JB 4.2 there is a folder named android per user, what is its purpose?

2013-06-04 Thread Mikkel Christensen
as defined by the API: http://developer.android.com/guide/topics/data/data-storage.html#filesInternal In general the directory structure for this is: /data/user/user_number/package_name/ Best regards, Mikkel Christensen On Wednesday, May 29, 2013 2:44:36 PM UTC+2, AndroidCompile wrote: Hi, In JB 4.2

Re: [android-porting] How can I make resources added in frameworks/base/core/res/res available in com.android.internal.R.java

2013-02-06 Thread Mikkel Christensen
: frameworks/base/core/res/res/values/symbols.xml or frameworks/base/core/res/res/values/public.xml Best regards, Mikkel Christensen On Saturday, August 4, 2012 11:51:49 PM UTC+2, Alexandre Dumont wrote: Thanks Jeffrey for the tip. Is it something new since JB? I don't remember needing that neither

[android-porting] Re: RIL understanding

2011-04-27 Thread Mikkel Christensen
=188ea9f9f0fcabf7adb036f7e9dbb595e1fbf74c;hb=gingerbread Is a vchanneld-daemon optional or is the rild-daemon alone not enough? If you want simultaneous control and data, and do not have two or more physical channels to your modem, then a multiplexer is needed. Best regards, Mikkel

[android-porting] Re: Dual Display with Android

2010-12-15 Thread Mikkel Christensen
be implemented on Android devices by having multiple activities running on dual displays. So is there any way of allowing applications to run on both displays without breaking the CDD requirements? Best regards Mikkel Christensen Ixonos Plc On Dec 13, 11:54 pm, Dianne Hackborn hack...@android.com

[android-porting] Re: Dual Display with Android

2010-11-30 Thread Mikkel Christensen
operating in parallel. This has been integrated with the WindowManagerService which takes care of dispatching events to the proper applications We have uploaded a video to YouTube showing our prototype: http://www.youtube.com/watch?v=5CWl4bTRKuw Hope this will help you. Best regards, Mikkel

[android-porting] Re: Interfacing native code to hardware functions

2010-11-23 Thread Mikkel Christensen
permissions to the LED sysfs entry. This can be done in your init.rc file. Best regards, Mikkel Christensen [1] http://android.git.kernel.org/?p=platform/development.git;a=tree;f=samples/SimpleJNI On Nov 17, 12:10 am, jon.schell jon.sch...@kyocera.com wrote: I am trying to create a simple app

[android-porting] Re: GPS on Android

2010-10-21 Thread Mikkel Christensen
Hello, When you have finished your initial connectivity problem there is a good thread on porting a GPS module to Android here: http://groups.google.com/group/android-porting/browse_thread/thread/c67550378823a0d4/693b60380dfd6538#693b60380dfd6538 Best regards, Mikkel Christensen Chief Software

[android-porting] Re: Web-browsing issue on OMAP device

2010-06-23 Thread Mikkel Christensen
Hi, Are you using WiFi or a cellular modem? Can you try to issue the command getprop in the console and post the results here. Then it will be possible to see if the DNS etc. is correctly setup. Best regards, Mikkel On Jun 22, 6:25 pm, Akash Choudhari akas...@gmail.com wrote: Did you try

[android-porting] Re: Android GPS

2010-06-11 Thread Mikkel Christensen
hi, You need to add BOARD_GPS_LIBRARIES := libgps to whatever BoardConfig.mk file you are using. Then run touch hardware/libhardware_legacy/gps/gps.cpp and recompile to pick up the changes. Best regards, Mikkel On Jun 9, 10:42 pm, Deva R r.deva...@gmail.com wrote: probably it expects a

[android-porting] Re: How to make the emulator work with the Custom Android IMage

2010-05-28 Thread Mikkel Christensen
Hi, Did you try to run the emulator manually? # ./out/host/linux-x86/bin/emulator -system out/target/product/generic/ system.img -kernel prebuilt/android-arm/kernel/kernel-qemu -data out/ target/product/generic/userdata.img You need to change the generic path to your board name off course.

[android-porting] Re: how enable LAN in eclairs

2010-05-21 Thread Mikkel Christensen
Hi, You might have problems with DNS not getting resolved automatically, but this can be set via this command: setprop net.dns1 xx.xx.xx.xx Best regards, Mikkel On May 20, 3:38 pm, Akash Choudhari akas...@gmail.com wrote: You can use netcfg I would use netcfg eth0 up netcfg eth0 dhcp

[android-porting] Re: Device Driver access via native functions called via JNI

2010-05-11 Thread Mikkel Christensen
Hi Sambhav , You will need to set the right permissions for /dev/video1 in init.rc file to access it. Best regards, Mikkel On May 11, 8:37 am, Sambhav isamb...@gmail.com wrote: Hi All, I have a JavaClass which calls native C function via JNI. Can these C function access the device drivers

[android-porting] Re: About IMEISV request on libreference-ril

2009-04-28 Thread Mikkel Christensen
Hi, It is the SW version of the modem module... check the AT command spec for the modem for an AT command. I cannot remember if there is a command defined in 3GPP 27.007, take a look. Best regards, Mikkel On Apr 28, 11:35 am, Daniel Baeyens dbaey...@warp.es wrote: Hi, I'm playing a bit

[android-porting] Re: Android 3G support

2009-04-21 Thread Mikkel Christensen
-09) in AT+CGREG? command. Regards, Hvr On Apr 20, 9:29 pm, Mikkel Christensen m...@ti.com wrote: 3G is only a access technology and the RIL could care less if the modem has camped on GPRS or WCDMA... but there are a couple of notifications from the vendor RIL like the IPC

[android-porting] Re: Android 3G support

2009-04-20 Thread Mikkel Christensen
3G is only a access technology and the RIL could care less if the modem has camped on GPRS or WCDMA... but there are a couple of notifications from the vendor RIL like the IPC GPRS_REGISTRATION_STATE that tells the Android Telephony framework what access technology (e.g. WCDMA, GPRS...) the

[android-porting] Re: GObjects in Android

2009-01-29 Thread Mikkel Christensen
Hi Kiku, We have done a quick Android port of the same mux. It is here: http://git.omapzoom.org/?p=android/hardware/ti/omap3.git;a=tree;f=gsm0710muxd Be welcome to add improvements to it. Best regards, Mikkel On Jan 28, 11:00 am, Kiku francesc.vilar...@gmail.com wrote: Hi all, I'm

[android-porting] Re: RIL implementation

2009-01-07 Thread Mikkel Christensen
You can try to change permisson on /dev/ttyS0 to 777 in init.rc Do you know what baud rate you modem runs? Per default the RIL is hardcoded with 115200 baud, so you need to change that if the modem supports another rate. You can also take a look at the omapzoom.org tree... it has some

[android-porting] Re: how to use the rild on OMAP2430

2008-12-11 Thread Mikkel Christensen
Hi, The command for starting rild is: /system/bin/rild -l /system/lib/LIBNAME.so -- -d /dev/ttyS0 where LIBNAME could e.g. be libreference-ril.so This requires that you have a modem on /dev/ttyS0 connected to your OMAP2430 hardware and a RIL library that fits that modem. /Mikkel On Dec 9,

[android-porting] Problems with PPP on Android - Omapzoom

2008-12-03 Thread Mikkel Christensen
Hi all, Sorry for the long post, but thought this might also help others trying to get PPP over GPRS running on Android! We are trying to get data call working on Android with the reference RIL for Omapzoom board. We are using a 3GPP 07.10 Multiplexer that will carry an AT command channel (for

[android-porting] Not able to enter full phone functionality when no SIM - why?

2008-11-18 Thread Mikkel Christensen
returns SIM_ABSENT and the GsmSimCard.java broadcast an intent that SIM is absent. This triggers the emergency call dialog to display. Is this really a desired behavior for a smart phone? Is there a property that can disable that? Best regards, Mikkel Christensen