[android-developers] Re: Can't stop debugging

2010-05-18 Thread fulanito
That´s weird.
Try deleting the project from the workspace (*without* removing it
from disk)
and importing it again (Import-Existing projects into workspace),
sometimes when Eclipse goes crazy it does the trick.
Fulanito.


On May 18, 12:36 pm, String sterling.ud...@googlemail.com wrote:
 OK, this is a weird one. I have an app which, for the last 12 hours or
 so, I can't NOT launch in debug mode on my handset. No matter what I
 do, it shows the Process ... is waiting for the debugger to attach
 dialog, and the process appears with the little green bug icon  in
 DDMS. Never seen anything like it.

 Here's what I've tried:
 - Using the Run command, not Debug, from Eclipse (duh)
 - Rebooting all hardware
 - Doing a clean install on the handset
 - Setting android:debuggable=false in the manifest

 That last one's freaking me out. If I can't turn off debugging for a
 production build, I can't distribute the app. And it's currently my
 top earner in the Market.

 Anybody got any ideas? About the only other thing I can think to try
 is a clean reinstall of Eclipse and the SDK, but that's enough of a
 PITA that I'm hoping I don't need to go that route.

 String

 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group 
 athttp://groups.google.com/group/android-developers?hl=en

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: How to achieve ultra smooth OpenGL/ES animation

2010-02-01 Thread fulanito
 I am drawing a pretty simple scene, with one large texture the about
 size of the screen (two triangles). I notice that the frame-rate is
 irregular: in most of cases, a frame finishes in 17 ms. However, in
 about 1 of 10 times, the frame finishes in 33ms.

This could be the garbage collector.
Whenever the garbage collector is called, you can see a message in the
logcat, under the tag dalvikvm, using log level debug.
If it is the GC, the way to fix it is to avoid allocating memory:
every time you allocate memory,
the GC wakes up to check if there is something to collect; just pre-
allocate all the objects you need,
and that´s it.
You can also call the GC manually, when the timing is good for you,
using the System.gc() call.

Fulanito.




-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: Need an invitation to google Wave?

2009-11-01 Thread fulanito
I would like one as well, please :-)

fulanito

On Nov 1, 7:20 am, Auguste Lunang legraphi...@gmail.com wrote:
 Hi,
 i have some google wave. invits to share. tell me if u want ..
 thx

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: Object Recognition

2009-10-22 Thread fulanito

What kind of app are you trying to develop?

How heavy is it, computatioinally ?
The mobile platform is quite limited for image recognition tasks.
I would start of by reading
http://www.maths.lth.se/vision/publdb/reports/pdf/olsson-akesson-master-09.pdf

Fulanito



--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Object Recognition

2009-10-22 Thread fulanito

I don´t know how to pass calculations to the Graphic chip, or if it´s
possible at all.
If you do find a way to do so, I would love to know how.

What you can do, is use Android NDK, which lets you use native code (C/
C++/assembly) through the JNI interface.
It´s not a perfect solution (it´s hardware  dependent, the development
process is not as smooth as writing plain Java or plain C code),
but AFAIK (and if someone knows something else, I would love to hear
about it, because it will help me as well :-) ), after finishing the
algorithmic and programmatic speedups, it´s the only resource you have
left in order to further speedup your code.

On Android NDK:
http://developer.android.com/intl/fr/sdk/ndk/1.6_r1/index.html

Fulanito

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: CPU usage detect

2009-09-30 Thread fulanito

open a terminal on the device with 'adb shell',
and then use the standart linux 'top' command.

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---