[android-developers] GLIBC 2.11 needed for emulator in SDK 2.3 !!!!

2010-12-06 Thread elpix1
Hi, I updated the SDK for the Android 2.3 and the emulator is not running anymore because it needs GLIBC 2.11 and my system has 2.10 ! It seems that the emulator is the only tool from the new SDK that requires 2.11 ! ./emulator: /lib/tls/i686/cmov/libc.so.6: version `GLIBC_2.11' not found

[android-developers] Re: Receiving UDP Broadcasts

2010-07-19 Thread elpix1
Hi . We are also having the same problem. Our application worked flawlessly with 1.5, 1.6 and 2.0, but doesn't receive UDP broadcasts any more with HTC HERO 2.1 and HTC EVO 2.1. Curiously it worked with Nexus One 2.1 and works with 2.2. We also found this issue:

[android-developers] Notification sound from file inside the app package ?

2010-01-22 Thread elpix1
Hi, Is it possible to play a notification sound from a sound file inside the application package ? Where should this file be stored in the apk (/res/raw or /assets) and what should be the URI to pass to the notification ? notification.sound = Uri.parse(... ? ...); Best regards. -- You

[android-developers] DialogPreference / not working in 1.6 ?

2009-09-18 Thread elpix1
Hi I am testing my application with new SDK 1.6 and encountered a problem running it with the new emulator. The problem occurred when inflating the resources used by my Settings screen which uses a DialogPreference / for an About dialog: ... ... at java.lang.reflect.Method.invokeNative(Native

[android-developers] Re: DialogPreference / not working in 1.6 ?

2009-09-18 Thread elpix1
Hi, I noticed also that in the 1.6. emulator if I try to execute (tested in Linux and Windows): Settings -- Wireless controls -- Bluetooth Settings A similar error occurs: Caused by: android.view.InflateException: Binary XML file line #26: Error

[android-developers] Re: making sdcard folder private to the app

2009-09-14 Thread elpix1
Hi, I don't think it is possible because the sdcard uses the FAT filesystem which does not support user's rights attributes. Related to this issue is a question that I asked earlier in this forum and got no response regarding a naming convention for application data in the sdcard, so at least

[android-developers] Re: adb finds my G1 device but not others!

2009-08-08 Thread elpix1
Is the USB debugging setting turned on ? Settings-Applications-Development-USB debugging. On Aug 8, 5:16 am, Paul Drummond paul.drumm...@iode.co.uk wrote: I have never had a problem with adb detecting my G1 device but I have never been able to have it detect other people's G1s.  I have

[android-developers] Remounting SDCARD in the emulator

2009-08-07 Thread elpix1
Hi, If, in the emulator, we unmount the SDCARD, is there a way to remount it, without restarting the emulator ? Regards --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] Re: Sharing data between activities

2009-08-07 Thread elpix1
Another way to share data between activities in the same process is to use the Application class: http://developer.android.com/reference/android/app/Application.html You have to specify the name of your Application class in the manifest and the framework will create only an instance of this

[android-developers] Directory naming convention for application data in SDCARD ?

2009-08-06 Thread elpix1
Hi, I have seen some apps store data in: /sdcard/package-name and others in: /sdcard/data/package-name Is there a recommended standard for this ? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android

[android-developers] How to detect Application Inactivity ?

2009-07-14 Thread elpix1
Hi all, My application has several Activities which the user can interact with and open Dialog Boxes from them. I need a way to detect when there is no user interaction with any of the Activities and Dialog Boxes after a certain amount of time (configurable by the user) and force a logout of the