[android-developers] API to generate Dalvik bytecode at runtime

2011-02-01 Thread Sergio Ciruela
Hi Guys! The following issue try to create an API to generate Dalvik bytecode at runtime. http://code.google.com/p/android/issues/detail?id=6322 Could someone to help me with that code. Thanks; -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] I can not load my compiled images.

2009-09-08 Thread Sergio Ciruela
Hi! I increased the heap size in Android changing and compiling the source code and generating the corresponding out folder. Now I want to load these images with the emulator but I can't and I don't know the problem. I use the next command: emulator.exe -avd myandroid -system

[android-developers] Error with annotations in mehtods

2009-07-21 Thread Sergio Ciruela
Hi, I have a problem with annotations when I try to use this in a method. I like retrieve this information and I use the next code: Method[] methods=m1.getClass().getDeclaredMethods(); for(Method method:methods){ Annotation[]

[android-developers] Re: Problem with Reflection Annotations!

2009-07-17 Thread Sergio Ciruela
java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; @Retention(RetentionPolicy.RUNTIME) @Target({ElementType.METHOD}) public @interface Importance { double[] values(); } On 17 jul, 20:31, fadden fad...@android.com wrote: On Jul 17, 10:55 am, Sergio Ciruela cirudinezid

[android-developers] Heap Size in Eclipse

2009-07-17 Thread Sergio Ciruela
Hi, I am using Annotations and relfection in Android. When I am running an application the process is died by the Emulator. I would like to change the heap size to increment its size. If it is not a good idea I would like to know a better solution for my problem. Thanks for all.

[android-developers] Dx Tool

2009-05-06 Thread Sergio Ciruela
Hi, I would like to know where i can find a how-to about DX tool. Thanks --~--~-~--~~~---~--~~ 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] Reconstructing DALVIK Applications

2009-04-15 Thread Sergio Ciruela
Hi, I would like to transform a dex file in bytecode to be able to read with the BCEL library. DX tool lets to transform from bytecode to dex files, but I would like to make the reverse process. Is it possible with DX tool? I have read that there is a project which is called UNDX that will make

[android-developers] Generate Bytecode Dynamically

2009-01-08 Thread Sergio Ciruela
Hi! I would like to create bytecode dynamically using BCEL or ASM. I know that there are annotations and reflection in Android. My question is, Is it possible? How I can load this class? Thanks for all ;) --~--~-~--~~~---~--~~ You received this message because