[android-developers] Re: Arabic ((( farsi ))) on android

2008-11-27 Thread David Turner
Sophisticated scripts like Arabic and Indic, which requires non-trivial glyph substitution and positioning to render well are currently not supported by Android. They are planned for future revisions of the platform, but I have strictly no ETA for this. On Thu, Nov 27, 2008 at 5:48 PM, Ludwig

[android-developers] Re: OpenGL Troubles on the G1

2008-12-03 Thread David Turner
the emulator only runs the Android software OpenGL renderer; while the G1 comes both with the software renderer and a hardware-accelerated one that talks to the graphics chip. Which one your application will end up using depends on which GL configuration you're asking for (I believe that you'll

[android-developers] Re: G1 linux

2008-12-06 Thread David Turner
. Hopefully, this should expand progressively as time goes, though I have no ETA for new related features. On Sat, Dec 6, 2008 at 12:08 AM, David Turner [EMAIL PROTECTED] wrote: the Bluetooth stack used in Android is bluez, i.e. the same one than standard Linux distributions, if that can help

[android-developers] Re: Epilog: Largish HTTP Post vs. ANR

2008-12-07 Thread David Turner
but these days, we recommend the much shorter alias: http://b.android.com :-) On Sun, Dec 7, 2008 at 3:00 PM, Mark Murphy [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote: Dumb question... where's the appropriate place to send the bug reports? http://code.google.com/p/android/issues/list

[android-developers] Re: How to configure android emulator disk space?

2008-12-08 Thread David Turner
disk space is not configurable at the moment. the partition sizes reflect the ones on the G1. we may add a feature to allow arbitrary partition sizes in the future, but for now, you will have to hack the emulator sources to do that (search for 0x420 in android_main.c). as for anything built

[android-developers] Re: Wifi Ip Address

2008-12-08 Thread David Turner
FYI the emulator doesn't simulate wifi, so all you have is an emulated GPRS/EDGE/3G connection. On Wed, Dec 3, 2008 at 7:12 AM, Andrea [EMAIL PROTECTED] wrote: Marcio: Yeah, that is what i am looking for, but on the emulator info.ipAddress returns 0. I hope on a real device it returns the

[android-developers] Re: Wifi Ip Address

2008-12-08 Thread David Turner
Also, generally speaking, you can use address 0.0.0.0 to accept connections from any network interface without having to worry about the difference between the GSM and Wifi channels On Mon, Dec 8, 2008 at 8:49 PM, David Turner [EMAIL PROTECTED] wrote: FYI the emulator doesn't simulate wifi, so

[android-developers] Re: Network access problem on ubuntu

2008-12-09 Thread David Turner
the emulator detects wether the ANDROID_PRODUCT_OUT environment variable is defined (this variable is normally set by build/envsetup.sh) if it is defined, the program assumes that you are building the Android sources and will automatically detect which files to get to launch the most recent

[android-developers] Re: Computer Reboots when accessing G1 through USB

2008-12-17 Thread David Turner
strange. Can you try removing the USB driver from your system (reboot in safe mode, remove the driver, then reboot again). Does it solve the problem ? If yes, this is something we would like to be able to reproduce. If not, it's something else on your machine (e.g. bad hardware, like a broken USB

[android-developers] Re: Emulator is not able to connect to network

2008-12-18 Thread David Turner
first, use emulator -wipe-data to rest your /data partition.If this still doesn't solve the problem, try updating to 1.0_r2 and let us know On Fri, Dec 19, 2008 at 3:06 AM, Esther esther...@gmail.com wrote: My emulator can't connect to network by Browser or Email application but the PC does

[android-developers] Re: android dns problems

2008-12-19 Thread David Turner
that's because the emulator can only work with addresses that are supported by a real DNS server. internal names on your network are probably resolved with the help of a hosts file or specific resolv.conf configuration. the solution is to run a DNS proxy on your machine and use the -dns-server

[android-developers] Re: android dns problems

2008-12-19 Thread David Turner
As I said, the emulated system must speak to a real DNS server, so it can't access the HOSTS/resolv.conf on your machine. When it starts, the emulator tries to find the current DNS servers for your machine, and setups network aliases so that the Android system can send query to them. However, a

[android-developers] Re: android dns problems

2008-12-19 Thread David Turner
-developers@googlegroups.com [mailto: android-develop...@googlegroups.com] *Im Auftrag von *David Turner *Gesendet:* Freitag, 19. Dezember 2008 11:31 *An:* android-developers@googlegroups.com *Betreff:* [android-developers] Re: android dns problems As I said, the emulated system must speak

[android-developers] Re: android dns problems

2008-12-19 Thread David Turner
Also, emulator -verbose will dump the IP address(es) of the DNS server that have been configured, just to check. On Fri, Dec 19, 2008 at 12:09 PM, David Turner di...@android.com wrote: Can you tell me how you invoke the emulator with the -dns-server option ? Do you have logs of your internal

[android-developers] Re: Phone?DIY

2008-12-20 Thread David Turner
what are you talking about ? On Sun, Dec 21, 2008 at 4:34 AM, cer...@gmail.com cer...@gmail.com wrote: Can the phone DIY? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] Re: upgrade emulator firmware

2008-12-21 Thread David Turner
you can't have a persistent+writable system image at the moment. the emulator currently creates a temporary file, copies all of system.img, then uses this for the /system partition when running. When it exits, the temp file is destroyed. this will change in a later release of the SDK. For now,

[android-developers] Re: How to dynamically load a share library in android?

2008-12-21 Thread David Turner
Anything not built with the android-toolchain will *not* work on Android.the only exception are trivial programs like hello world that work mostly by luch, if nothing else. you should at the very minimum build with the toolchain provided with the open-source tree, against the Bionic C library

[android-developers] Re: iPhone SIM Card compatibility

2008-12-21 Thread David Turner
it's simply due to the fact that ATT 3G uses frequencies that are not supported by the G1 hardware. So there is no way to get better than Edge on ATT networks. On Sun, Dec 21, 2008 at 2:05 AM, Ramin ram...@gmail.com wrote: I have a 1st gen iPhone I use for development and a 3G model for day-

[android-developers] Re: Problems running telnetd on adp1

2008-12-21 Thread David Turner
telnetd has been removed after RC30. On Mon, Dec 22, 2008 at 1:27 AM, onlythoughtwo...@googlemail.com onlythoughtwo...@googlemail.com wrote: When i start telnetd via console, as root ,no errors occur. But i cannot connect to my phone via telnet and the ps dump also shows that no telnetd is

[android-developers] Re: Problems running telnetd on adp1

2008-12-23 Thread David Turner
don't forget to enable USB debugging in the Settings to be able to see your device through ADB On Tue, Dec 23, 2008 at 12:57 AM, Mark Murphy mmur...@commonsware.comwrote: onlythoughtwo...@googlemail.com wrote: Thanks, is there another way then telnet to access the phones console from my

[android-developers] Re: How to config the emulator to browser www?

2008-12-23 Thread David Turner
I assume he meant this: http://code.google.com/android/reference/emulator.html On Tue, Dec 23, 2008 at 12:39 PM, JBQ jb...@huawei.com wrote: where is the emulator instal lnotes? Thanks. On 12月23日, 下午7时11分, Fred Grott(shareme) fred.gr...@gmail.com wrote: I assume you mean use browser to

[android-developers] Re: Emulator crashing

2009-01-05 Thread David Turner
this should not happen. you're probably encountering a weird emulator bug. the Eclipse message is normal in case of an emulator crash. what exact platform/OS do you have ? can you repeat this consistently, or are the crashes random ? thanks in advance On Sun, Jan 4, 2009 at 11:16 AM, Vitaly

[android-developers] Re: Emulator crashing

2009-01-05 Thread David Turner
On Mon, Jan 5, 2009 at 6:23 PM, Sundog michael_...@tmail.com wrote: I always get this too. I don't think it interferes with normal operation. thanks for pointing this out. Can you answer the same basic questions ? On Jan 4, 3:16 am, Vitaly vita...@gmail.com wrote: Hello, I'm just

[android-developers] Re: the text font size in pixel != the actual pixels each character occupies?

2009-01-06 Thread David Turner
On Tue, Jan 6, 2009 at 7:09 AM, Xiongzh zx.zhangxi...@gmail.com wrote: Say, my font size of the text in TextView is 20.5px. It doesn't mean that every character of the text occupies 20.5px in the screen, does it? certainly not, the text size is only a notional unit. the actual number of

[android-developers] Re: Skia Graphics Library

2009-01-07 Thread David Turner
forget about using Skia headers for deployed projects. they are not part of the stable Android API and *will* change in future releases, breaking your code in unexpected ways. but if you want to go that route and inflict huge pain to yourself in the future, have a look to android/external/skia

[android-developers] Re: how to retrieve path of the sdcard

2009-01-07 Thread David Turner
it's /sdcard :-) On Wed, Jan 7, 2009 at 2:10 PM, pradeep pradeep...@gmail.com wrote: hi can any one let me know how to to retrieve path of the sdcard? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: http-proxy does not work on emulator when i use the build of master branch with cupcake changes

2009-01-07 Thread David Turner
hello, can you give me the output of using the -debug-proxy option when starting the emulator ? On Wed, Jan 7, 2009 at 2:34 AM, Li Wei (Vincent) outm...@gmail.com wrote: Hi, I made a full build of the latest master branch(including cupcake changes), and then make sdk and run emulator with

[android-developers] Re: Skia Graphics Library

2009-01-08 Thread David Turner
as a lib/sharedlib inside android, as its api is not guaranteed to be stable over time. See code.google.com/p/skiafor the active trunk. On Wed, Jan 7, 2009 at 8:31 AM, David Turner di...@android.com wrote: forget about usingSkiaheaders for deployed projects. they are not part of the stable

[android-developers] Re: http-proxy does not work on emulator when i use the build of master branch with cupcake changes

2009-01-08 Thread David Turner
http proxy service connecting to: wwwgate0-ch.mot.com :1080 server name 'wwwgate0-ch.mot.com' resolved to 58.247.121.38 proxy_http_setup: creating HTTP Proxy Service Footer is (len=2): ' ' http_service_free D:\Android\android-sdk-windows-1.0_r1\tools On Thu, Jan 8, 2009 at 9:43 AM, David

[android-developers] Re: native C++ SIP stack on Android

2009-01-08 Thread David Turner
first, you cannot have C++ code in the kernel. however, depending on how your stack is designed, you may be able to use it from Java through JNI given that you give absolutely no information about your stack's interface, it's really difficult to answer your question On Thu, Jan 8, 2009 at 5:57

[android-developers] Re: http-proxy does not work on emulator when i use the build of master branch with cupcake changes

2009-01-08 Thread David Turner
? Is there a tool available within the emulator itself? Thanks for the feedback and sorry for so many questions:) On Thu, Jan 8, 2009 at 6:52 PM, David Turner di...@android.com wrote: thanks, however, I'd be more interested in the output that happens when you actually try to connect to a site

[android-developers] Re: http-proxy does not work on emulator when i use the build of master branch with cupcake changes

2009-01-08 Thread David Turner
or if it loads the web page successfully. Thanks, -Freepine On Fri, Jan 9, 2009 at 1:14 AM, David Turner di...@android.com wrote: thanks, you don't need to send me the local output. I'm guessing something. Can you tell me if accessing a site through its IP number works, e.g. use -http-proxy

[android-developers] Re: auto generation of Android.mk file

2009-01-09 Thread David Turner
You don't need one Android.mk per sub-directory. It's perfectly possible to use one top-level Android.mk that references all sources required for your project. just refer to them with their subpath, as in subdir/filename. and no, it's not possible to convert an arbitrary Makefile into an

[android-developers] Re: JMI and android

2009-01-09 Thread David Turner
hello, JMI what ? On Fri, Jan 9, 2009 at 3:05 PM, arnouf arnaud.far...@gmail.com wrote: Hi guys! A simple question: Is JMI supported by Android? Regards --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[android-developers] Re: why I can not get log whose logtag is GSM

2009-01-13 Thread David Turner
I believe these are sent to the radio log buffer, which is distinct from the standard one (filtering is done at a lower level). try adb logcat -b radio to dump its content On Wed, Jan 14, 2009 at 7:19 AM, shine zxysh...@hotmail.com wrote: I found if I use GSM LOG TAG, I can not get the output

[android-developers] Re: adb Error: ADB server didn't ACK

2009-01-14 Thread David Turner
hello, what do you mean by after running Process Explorer exactly ? On Tue, Nov 25, 2008 at 9:02 AM, Gameboy r59...@gmail.com wrote: I got same problem on windows, after running Process Explorer. --~--~-~--~~~---~--~~ You received this message because you

[android-developers] Re: gps checksum never used, validity of message not verified

2009-01-15 Thread David Turner
please note that gps_qemu.c is only used for GPL emulation within the Android emulation (i.e. it is never used on a real device). that's why there is little point in checking the checksum here, since all the messages sent to it are normally generated by the emulator program (for details, see the

[android-developers] Re: Is Android going to use the LGPL'ed Qt 4.5?

2009-01-15 Thread David Turner
short answer: no On Wed, Jan 14, 2009 at 9:05 PM, Alexander Orlov alexander.or...@loxal.netwrote: Today Nokia have announced that it will relicense the Qt Framework under LGPL http://www.qtsoftware.com/about/news/lgpl-license-option-

[android-developers] Re: Audio in the emulator...

2009-01-15 Thread David Turner
the emulator now supports audio recording. If you have problems with it, you should report mode detailed information about it here On Thu, Jan 15, 2009 at 11:05 AM, Andrei Craciun avcrac...@gmail.comwrote: Hi All, As reported on this blog:

[android-developers] Re: DNS Caching

2009-01-15 Thread David Turner
It simply is not possible to disable the cache from Java. The fixes/enhancements you mention are already planned for a future release, but didn't happen yet for various reasons. sorry about that. On Thu, Jan 15, 2009 at 12:43 PM, Greg White debauchedsl...@gmail.comwrote: All, I've recently

[android-developers] Re: Display multiple videos at the same time in Android r1.

2009-01-15 Thread David Turner
I suspect that this has nothing to do with the emulator per se. you do not describe exactly what you're doing nor what the crash really is, so offering you a helpful answer is a bit tough. On Thu, Jan 15, 2009 at 1:08 PM, sush susama.choudh...@gmail.com wrote: Hi, I am trying to play two

[android-developers] Re: Shell access in Dev Phone

2009-01-15 Thread David Turner
you can use adb shell to get a shell prompt on the phone. Beware that this runs a version of ash so you'll be missing a *lot*of shell features. Moreover, the system doesn't come by default with typical shell programs like find, cp, etc... and no Perl / Python / etc... (the terminal app also allows

[android-developers] Re: how to send AT command to android phone?

2009-01-16 Thread David Turner
the short answer is that this is not possible. The Android GSM stack is already talking to the modem through the AT comment channel. The AT protocol is not designed to allow several clients to talk to the modem, the latter assumes it only talks to a single device, and is very state-full. If you

[android-developers] Re: JMI and android

2009-01-19 Thread David Turner
, 11:17 am, David Turner di...@android.com wrote: hello, JMI what ? On Fri, Jan 9, 2009 at 3:05 PM,arnoufarnaud.far...@gmail.com wrote: Hi guys! A simple question: Is JMI supported by Android? Regards --~--~-~--~~~---~--~~ You

[android-developers] Re: Emulator can't access host os's network

2009-03-10 Thread David Turner
What do you mean exactly ? What are the exact symptoms ? On Tue, Mar 10, 2009 at 7:02 AM, miracle swen...@gmail.com wrote: Hi there, I install sdk on centos.At first it works well. But I encounter a strange issue:One day my emulator can not access it's host os's network any more. could

[android-developers] Re: Vibrator device simulation in the emulator

2009-03-17 Thread David Turner
Hello, The vibrator is not currently emulated by the Android emulator at this point. On Mon, Mar 16, 2009 at 8:07 PM, Prem Thilagar prem...@gmail.com wrote: Hi I am trying to actually simulate a vibrator device inside the emulator .A timed_output driver for the vibrator was created and i am

[android-developers] Re: How to config G1 to make both browser and MMS work?

2009-03-18 Thread David Turner
when you want to use different APNs for both data and MMS, you need to set the apn type field for the system to make a difference between them and use them both. use apn type=default for the data APN. and apn type=mms for the MMS one. Hope this helps On Wed, Mar 18, 2009 at 12:38 AM, FayGU

[android-developers] Re: Accuracy of sensors such as electronic compass

2009-03-19 Thread David Turner
On Thu, Mar 19, 2009 at 3:49 AM, mscwd01 mscw...@gmail.com wrote: Just a quick question... I am now beginning an app which will use the compass and tilt sensors to determine a persons heading and line of sight. Can I assume the sensors on devices such as the G1 are fairly accurate or can I

[android-developers] Re: Accuracy of sensors such as electronic compass

2009-03-19 Thread David Turner
the compass measures the local magnetic field, and as such might be influenced by various electronics devices around the phone. For example, try using a compass application and move near/far a PC, and you'll see the pin tilting towards it sensibly. In other words, the accuracy of the compass is

[android-developers] Re: adb version failed

2009-03-20 Thread David Turner
On Thu, Mar 19, 2009 at 11:29 PM, jammy jammy.fivef...@gmail.com wrote: i installed android in windows and checked it... the problem that i am facing is in windows eclipse R.java is created as soon as i create new project but in fedora 10 R.java is not created.. because of that it is showing

[android-developers] Re: A simple question regarding inter-process communication.

2009-03-20 Thread David Turner
On Fri, Mar 20, 2009 at 10:46 AM, Kenny yxw...@gmail.com wrote: I wonder if intents are sent across Linux processes too. Very anxious to know the answer. Of course, they are transparently send across processes when necessary, or sent locally if the receiver is in the same process. This magic

[android-developers] Re: Server Socket on Real Device

2009-03-20 Thread David Turner
On Fri, Mar 20, 2009 at 7:12 AM, Daniel Janev d.ja...@prosyst.com wrote: If the device is not connected to any WiFi network it will not be accessible at all :) Probably using GPRS or EDGE you'll release some IP address but you won't be able to access the phone using this address. For my

[android-developers] Re: Why can not edit /init.rc on adp1 with firmware 1.1?

2009-03-20 Thread David Turner
that's because init.rc is really part of the ramdisk image (included in boot.img with the kernel image). You need to regenerate a new ramdisk + boot image for this to work. There is no way to modify this file after boot. On Wed, Mar 18, 2009 at 8:05 AM, cpedia cpe...@gmail.com wrote: I flashed

[android-developers] Re: Capture data packet of dev phone

2009-03-20 Thread David Turner
On Fri, Mar 20, 2009 at 10:09 AM, Breno breno.min...@gmail.com wrote: Hi, Does anybody knows how can i capture data packets transmitted/ received by Dev Phone (real hardware)? this is very important in development stage. In emulator it's very easy, just start wireshark. I need to do

[android-developers] Re: Cupcake coming in April? Where is the SDK?

2009-03-23 Thread David Turner
On Mon, Mar 23, 2009 at 2:59 PM, zl25drexel zl25dre...@gmail.com wrote: Cupcake is coming, and as you know it will break a lot of apps in the market, those that use reflection private api. So where is the Cupcake SDK/emulator for us to try our apps? It will be available publicly when it's

[android-developers] Re: When issue adb shell sendevent, I don't want ADB server redirect any printf's info to terminal at Windows CMD.

2009-03-23 Thread David Turner
Why don't y ou try to redirect the output of adb shell to the NUL device instead ? On Tue, Mar 24, 2009 at 4:22 AM, linlo...@gmail.com wrote: As you know, when issue adb shell sendevent, the printf of sendevent will write to /dev/pts/1, and at that time, ADB server will read from /dev/ptmx.

[android-developers] Re: http proxy and chunked encoding with emulator

2009-03-24 Thread David Turner
That very well could be a bug in the chunk encoding support of the http rewriter within the emulator's proxy code. I could not test it against a lot of cases. Can you dump the output of emulator -debug-proxy when you try to connect to www.google.com through your proxy ? This will print out the

[android-developers] Re: Injecting HTTP header into all requests issued by the emulator

2009-03-24 Thread David Turner
the http proxy support code is in external/qemu/proxy/proxy_http_rewriter.c you should be able to modify it to inject the header you need. Apart from that, this is not supported by the current binary, so an alternative is to use a different proxy to do that. You can still use -debug-proxy to

[android-developers] Re: How to config G1 to make both browser and MMS work?

2009-03-24 Thread David Turner
set it explicitely. On Mar 19, 3:18 am, David Turner di...@android.com wrote: when you want to use different APNs for both data and MMS, you need to set the apn type field for the system to make a difference between them and use them both. use apn type=default for the data APN

[android-developers] Re: Google dev phone G1 activation problem

2009-03-24 Thread David Turner
Have you tried removing the mms related settings from the default APN, then add them back to the mms one ? On Thu, Mar 19, 2009 at 10:00 AM, HalfAsleep chri...@gmail.com wrote: If anyone gets their phone set up with telenor, including MMS, please let us know. I have got my phone working too

[android-developers] Re: http proxy and chunked encoding with emulator

2009-03-24 Thread David Turner
pm, David Turner di...@android.com wrote: That very well could be a bug in the chunk encoding support of the http rewriter within the emulator's proxy code. I could not test it against a lot of cases. Can you dump the output of emulator -debug-proxy when you try to connect

[android-developers] Re: Cupcake coming in April? Where is the SDK?

2009-03-24 Thread David Turner
Hmm.. Despite the fact that *this is what we want*, we cannot make a guarantee that the Cupcake SDK will be officially released strictly before the platform is available on retail phones. Properly testing and packaging a SDK takes a lot of time, we *may* encounter blocker bugs that have nothing

[android-developers] Re: Help connecting localhost to android app

2009-03-24 Thread David Turner
Connect to 10.0.2.2 which is the magic address in the emulator to connect to your host machine's localhost. See the emulator documentation for more details. On Tue, Mar 24, 2009 at 9:51 AM, talha.rahma...@googlemail.com talha.rahma...@googlemail.com wrote: Hi i am trying to build an

[android-developers] Re: How to setup the DNS to access the external nework

2009-03-25 Thread David Turner
Are you sure the DNS server you use is capable of returning IP addresses for non-local domains ? On Wed, Mar 25, 2009 at 8:53 AM, lianwei lianwei.w...@gmail.com wrote: Hi all, I can not access the external network because of DNS problem, below is my steps: 1. Setup DNS ./adb shell

[android-developers] Re: How to login to the root of Android Dev Phone 1?

2009-03-25 Thread David Turner
pull is an adb command, you need to run it on the host (there is no easy way to send a file to your host from the system). E.g. adb pull device-path host-path On Wed, Mar 25, 2009 at 4:34 AM, havexz bali.param...@gmail.com wrote: well i am able to access the folder but still unable to get

[android-developers] Re: How to setup the DNS to access the external nework

2009-03-25 Thread David Turner
DNS server, or some other settings? Yes, you need to pass the address of a second DNS server, as in -dns-server address1,address2 -Lianwei On Mar 25, 5:27 pm, David Turner di...@android.com wrote: Are you sure the DNS server you use is capable of returning IP addresses for non-local

[android-developers] Re: Track Ball Problem...

2009-03-25 Thread David Turner
You need to register your activity to the system to tell it that you can handle trackball events directly. If you don't, then the system will emulate the events with key down/up events. I don't know the API to do that. By the way, you can press Delete to enable track-ball mode in the emulator (or

[android-developers] Re: Cupcake coming in April? Where is the SDK?

2009-03-25 Thread David Turner
I fear it's a packaging problem. Is there a file named vold.conf in /system/etc ?I.e. what is the output of adb shell /system/etc/vold.conf If the file is missing, the SDCard cannot be mounted even if it is recognized by the kernel. On Wed, Mar 25, 2009 at 12:40 PM, Victor vkrugli...@gmail.com

[android-developers] Re: TERRIBLE BUG: aapt crashes on Windows

2009-03-25 Thread David Turner
It would be better if you could provide a way to reproduce the problem. try b.android.com to report the problem On Wed, Mar 25, 2009 at 11:38 PM, Stoyan Damov stoyan.da...@gmail.comwrote: This is a showstopper, and I'm experiencing for the 2nd time. Shouldn't be hard to find, if the apt tool

[android-developers] Re: TERRIBLE BUG: aapt crashes on Windows

2009-03-25 Thread David Turner
thanks, still it would be nice if you could provide a simple example that exhibits the crash. On Thu, Mar 26, 2009 at 12:02 AM, Stoyan Damov stoyan.da...@gmail.comwrote: Found the URL for bug submissions, submitted here -- http://code.google.com/p/android/issues/detail?id=2301 On Thu, Mar

[android-developers] Re: TERRIBLE BUG: aapt crashes on Windows

2009-03-25 Thread David Turner
26, 2009 at 1:02 AM, David Turner di...@android.com wrote: It would be better if you could provide a way to reproduce the problem. try b.android.com to report the problem On Wed, Mar 25, 2009 at 11:38 PM, Stoyan Damov stoyan.da...@gmail.com wrote: This is a showstopper, and I'm

[android-developers] Re: TERRIBLE BUG: aapt crashes on Windows

2009-03-25 Thread David Turner
On Thu, Mar 26, 2009 at 1:17 AM, Stoyan Damov stoyan.da...@gmail.comwrote: A crash is a problem. We need the input that aapt receives to be able to reproduce and analyze the crash, otherwise even having the symbols is not going to help tremendously. David, give me a break. The tool

[android-developers] Re: TERRIBLE BUG: aapt crashes on Windows

2009-03-25 Thread David Turner
the bug? Please follow the instructions here: http://source.android.com/download The aapt sources are located in platform/frameworks/base/tools/aapt Cheers On Thu, Mar 26, 2009 at 2:17 AM, Stoyan Damov stoyan.da...@gmail.com wrote: On Thu, Mar 26, 2009 at 2:09 AM, David Turner di

[android-developers] Re: Cupcake coming in April? Where is the SDK?

2009-03-25 Thread David Turner
) :( , but i checked another old sourcebase..where sdcard work.. there also that file missing !! Any clues? Thanks On Wed, Mar 25, 2009 at 10:55 PM, David Turner di...@android.com wrote: I fear it's a packaging problem. Is there a file named vold.conf in /system/etc ?I.e. what is the output

[android-developers] Re: TERRIBLE BUG: aapt crashes on Windows

2009-03-25 Thread David Turner
On Thu, Mar 26, 2009 at 1:44 AM, Stoyan Damov stoyan.da...@gmail.comwrote: I don't have a problem sharing my manifest file, but here's the current difference between a manifests with which the app builds, and one it doesn't - a SINGLE empty line. For example, if my manifest contains these

[android-developers] Re: Routing UDP data to the emulator

2009-03-26 Thread David Turner
Did you try listening to 0.0.0.0 and/or 10.0.2.2 ? On Wed, Mar 25, 2009 at 9:04 PM, Tim tevz...@gmail.com wrote: I've been scouring the forums and found similar issues like this, but the solutions seems not to be working. What we're doing is trying to receive data from an external server

[android-developers] Re: Is it possible to damage the Accelerometer through code?

2009-03-26 Thread David Turner
that sounds *extremely* unlikely. I bet it was just coincidence that the hardware broke while he was using your app. On Thu, Mar 26, 2009 at 11:53 PM, clark clarkd...@gmail.com wrote: I recently received a comment in the market by someone claiming that my app has caused the accelerometer in

[android-developers] Re: Android game developers desperately need optimised game engine example code ...

2009-03-30 Thread David Turner
On Mon, Mar 30, 2009 at 10:36 AM, admin.androidsl...@googlemail.com admin.androidsl...@googlemail.com wrote: Why is it a problem? Because there is not a single game in Android Market that features smooth scrolling backgrounds. Games may not be the only app needed, but they certainly need to

[android-developers] Re: http proxy and chunked encoding with emulator

2009-03-31 Thread David Turner
:) On Mar 24, 3:42 pm, David Turner di...@android.com wrote: Thanks a lot, I could find a bug in the http rewriter source code. It is triggered by the Keep-Alive +chunkedreply. I'll file a bug for it and start working on it. However, I'd like to be able to test it. Anyone knows a proxy

[android-developers] Re: Is it possible to read cellular-network messages?

2009-04-01 Thread David Turner
I believe most radio messages are handled by the radio firmware which, in the case of the G1 and ADP1, runs on a separate ARM9 processor which doesn't share a memory bus with the ARM11 Android itself runs on. In other words, they are not available. On Wed, Apr 1, 2009 at 12:36 PM, szeldon

[android-developers] Re: send nmea data to android emulator

2009-04-01 Thread David Turner
Do you have example sentences that demonstrate the problem. For the record, the emulator-specific GPS support in the system will only record GPRMC sentence with a fix status of 'A' On Tue, Mar 31, 2009 at 1:51 PM, malt alt.mi...@googlemail.com wrote: I'm writing a Android gps application using

[android-developers] Re: How to enable Network Location provider.

2009-04-01 Thread David Turner
Did you enabled the GPS with Settings Security location Enable GPS satellites ? On Mon, Mar 16, 2009 at 7:56 AM, Kumar androidq.ku...@gmail.com wrote: Hi, Alex Thanks for your reply to my earlier mail, I am unable to get the location updates when i use Network location provider. From the

[android-developers] Re: Cupcake coming in April? Where is the SDK?

2009-04-01 Thread David Turner
another old sourcebase..where sdcard work.. there also that file missing !! Any clues? Thanks On Wed, Mar 25, 2009 at 10:55 PM, David Turner di...@android.com wrote: I fear it's a packaging problem. Is there a file named vold.conf in /system/etc ? I.e. what

[android-developers] Re: Vista does not access G1 memory card

2009-04-02 Thread David Turner
Can you tell us exactly what you do to access it ? On Wed, Apr 1, 2009 at 11:37 PM, intbt tacbe...@gmail.com wrote: I am trying to access the memory card but Vista says please insert a disk into removable disk H: and will not permit me to load files into the card. Any ideas as to what is

[android-developers] Re: How to avoid garbage collection?

2009-04-02 Thread David Turner
collections. On Thu, Apr 2, 2009 at 11:15 AM, David Turner di...@android.com wrote: Without any detail about what your core loop is doing, there is no way we can answer that. The general rule of thumb is don't allocate and you won't get a GC at all. On Thu, Apr 2, 2009 at 10:53 AM

[android-developers] Re: How to avoid garbage collection?

2009-04-02 Thread David Turner
Without any detail about what your core loop is doing, there is no way we can answer that. The general rule of thumb is don't allocate and you won't get a GC at all. On Thu, Apr 2, 2009 at 10:53 AM, admin.androidsl...@googlemail.com admin.androidsl...@googlemail.com wrote: So my app is

[android-developers] Re: Source Code for dx

2009-04-02 Thread David Turner
Use the snapshot link in gitweb to get a tarball for a given directory, for example: http://android.git.kernel.org/?p=platform/dalvik.git;a=snapshot;h=8fbe0f8db412961fa412cc1387d55deab5a8206c;sf=tgz will give you the dex sources On Thu, Apr 2, 2009 at 4:11 PM, ScottG sguth...@gmail.com wrote:

[android-developers] Re: How does prelink-linux-arm.map work?

2009-04-02 Thread David Turner
What does dlerror() returns exactly ? 2009/4/2 Hsiung, Chuan-Da 熊全達 cdhsi...@gmail.com Hi, I got some diopen() fails in my native library. I guess the reason is insufficient memory. I conduct some experiments by exhausting the memory and then dynamically load some .so files. Yes, dlopen()

[android-developers] Re: How to run apk file on SDcard?

2009-04-02 Thread David Turner
.apk files are just installation packages, you don't run them. At installation, some of the content of the .apk is uncompressed into the /data partition, some meta-data about the package (e.g. permissions, supported intent filters, etc...) are recorded by the system and a few other things. At the

[android-developers] Re: Windows Cupcake SDKs compilation

2009-04-05 Thread David Turner
On Sun, Apr 5, 2009 at 6:36 PM, Al Sutton a...@funkyandroid.com wrote: I tried the instructions from the git repo for building windows and they don't work. To start with cygwin bases everything off /cygwin rather than / so even trying to run repo gets; /bin/sh: bad interpreter: No such

[android-developers] Re: Cupcake SDKs available for download

2009-04-06 Thread David Turner
On Mon, Apr 6, 2009 at 4:11 AM, Jean-Baptiste Queru j...@android.com wrote: This is definitely new in cupcake - it's part of the work that has been done by the tools team to allow a single SDK to work with multiple target configurations, and the visible effect is that launching the emulator

[android-developers] Re: Why adb push to sdcard report Read-only file system for the emulator of the latest android source code

2009-04-06 Thread David Turner
See https://review.source.android.com/Gerrit#change,9452 there is a packaging bug that prevents the mount daemon from properly mounting the SD Card at startup. The proposed changed fixes it. On Mon, Apr 6, 2009 at 4:10 AM, max max.xi...@gmail.com wrote: Hi Guys, This is a question that

[android-developers] Re: Why adb push to sdcard report Read-only file system for the emulator of the latest android source code

2009-04-06 Thread David Turner
. It is likely to be un-needed if other changes were synced in though On Mon, Apr 6, 2009 at 2:33 PM, Mariano Kamp mariano.k...@gmail.com wrote: Sounds great. Just wondering if there is any workaround for today's problems? On Mon, Apr 6, 2009 at 12:23 PM, David Turner di...@android.com wrote: See https

[android-developers] Re: Sleep mode in emulator

2009-04-06 Thread David Turner
no, it can't really do that right now. On Mon, Apr 6, 2009 at 6:15 PM, samurai00...@gmail.com samurai00...@gmail.com wrote: Is the actual version of the emulator able to reproduce the sleep mode? (Android 1.1 SDK r_1) --~--~-~--~~~---~--~~ You received

[android-developers] Re: Why adb push to sdcard report Read-only file system for the emulator of the latest android source code

2009-04-07 Thread David Turner
. Well, what do you expect if you build your own system image? Getting sources right from the depot means getting a work in progress, and it is expected that not all stuff might work as cleanly as they should. On Mon, Apr 6, 2009 at 10:57 PM, David Turner di...@android.com wrote: the change has

[android-developers] Re: How to print errno in native code in android

2009-04-07 Thread David Turner
On Tue, Apr 7, 2009 at 2:15 AM, Meryl Silverburgh silverburgh.me...@gmail.com wrote: Hi, I am trying to use LOGE function to display the value of errno. LOGE(errno: %d\n, errno); But what I get errno: 1 But '1' is not a valid errno (I look at errno.h). You are not looking very well

[android-developers] Re: HttpClient + Proxy with authentication

2009-04-09 Thread David Turner
On Thu, Apr 9, 2009 at 3:30 PM, Erik H erik.d.hell...@gmail.com wrote: I need to use HttpClient in my application. However, the network I'm on when running the emulator has a proxy that requires authentication. How do I configure the emulator to use this proxy with authentication and how do

[android-developers] Re: Android/G1 video driver

2009-04-09 Thread David Turner
If you are referring to the accelerated OpenGL ES shared library used by the system on G1 / ADP1 devices, its source is not available, it's a proprietary binary blob. There is however a software-only OpenGL ES implementation that is part of the system (and is used when you run in the emulator),

[android-developers] Re: Android/G1 video driver

2009-04-09 Thread David Turner
ask on android-porting instead, since this is a forum for application developers. On 9 апр, 18:09, David Turner di...@android.com wrote: If you are referring to the accelerated OpenGL ES shared library used by the system on G1 / ADP1 devices, its source is not available, it's a proprietary

[android-developers] Re: no root access.. how to put file...

2009-04-10 Thread David Turner
On Fri, Apr 10, 2009 at 5:32 AM, BIRJODH birjodh.tiw...@gmail.com wrote: I am not able to understand one simple issue.. if there is no root access to file system even to the user who owns the phone then why on earth would the dev guide include commands like adb push local sdcard when

  1   2   3   4   >