0
votes
2answers
540 views

How to extract java files from .apk file

Unfortunately I deleted my Android source code. Tried to get jar using dex2jar and baksmali and used jd-gui to get java source files using my .apk file. Yes I got the files but the problem I have is, ...
3
votes
2answers
521 views

AutoCompleteTextView doesn't show suggestions in Android 2.3.5

I'm using a special autocompletetextview for suggestions of thousands of streets. Due to this huge element list, I have to clear and populate the Adapter on the fly depending on the first input ...
3
votes
1answer
85 views

Debugging reversed Android application

Let's assumed I have a malware application I got from a device and reversing it using smali or dedexter or dex2jar is ok, but I want to actually debug it and not just perform static analysis. Is it ...
-2
votes
1answer
281 views

Add Dalvik byte code to existing APK with Delphi [closed]

My company asked me to create a dalvik bytecode injector in delphi in order to pass a piece of code in its existing apps. Basicaly it's a code that displays ads in the main activity. So here is my ...
3
votes
2answers
166 views

Android bytecode analysis for method parameters

I want to analyze the Android bytecode, and find all instructions that are relevant to the method parameters (kind of slicing on the parameters). Can anybody provide some references for this? Any help ...
1
vote
2answers
135 views

Dalvik bytecode tracer

How can I get the trace of dalvik bytecode that is being executed while the device is running an app (like logcat does)?
1
vote
2answers
367 views

Dalvik Bytecode Obfuscation on Android

I have recently read this article Dalvik Bytecode Obfuscation on Android I have also downloaded the source code at https://github.com/thuxnder/dalvik-obfuscator/blob/master/injector.py I understand ...
0
votes
0answers
98 views

Why bytecode calls Object->getClass() at a direct field access

I decompiled Java (actually Dalvik) bytecode. In the beginning of a method, I access a field of an instance member directly (i.e. not through a getter). It seems tha Java calls Object.getClass() on ...
2
votes
1answer
236 views

Extended-width dalvik bytecodes missing on Jellybean

When ICS came out, there were several new extended-width bytecodes introduced. Most of these were for instructions to support jumbo ids. Here are some of these new instructions, taken from my ...
1
vote
1answer
429 views

Executing Java bytecode in Android

I am trying to execute Java program in Android. Used the link How to execute the dex file in android with command? as reference. My question is, can I run the Java program on the emulator from ...
1
vote
1answer
139 views

About *-bearing registers in Dalvik bytecode

I am a little new to the format of Dalvik bytecode, I am wonering what do these *-bearing register mean, e.g. object-bearing, exception-bearing, etc. At the same time, the generated bytecode is using ...
1
vote
2answers
117 views

Android loop bytecode comparison

I've been doing some experiments with loops in Android and got puzzled with the results. In the past I read somewhere that (in C++??) if you translate this loop: for(int i = 0; i != ...
0
votes
1answer
79 views

Completing decompiled code

I have the following section of code. What method is supposed to be in the place of local 36? public void Alert() { AlertDialog.Builder localBuilder1 = new AlertDialog.Builder(this); ...
1
vote
1answer
147 views

Get bytecode at runtime

On Android, I need to retrieve the bytecode from the executing class at runtime. If you're wondering why, the reason is that I'd like to compute a hash of it in order ton implement some anti-piracy ...
2
votes
2answers
182 views

Does qualifying a method call degrade performance in Java?

I'm guessing the following two functions compile to the exact same byte-code, but I beg to ask the question. Does qualifying a method call where it is not necessary degrade performance? For example: ...
3
votes
1answer
485 views

Decompiling Dalvik to Java, why so many inconsistencies?

I used dex2jar and JD-gui on the dex file of an application, although at several parts of the code, it did not make sense and there were error in term of decompilation. Although when I used backsmali ...
85
votes
5answers
20k views

Java 7 language features with Android

Just wondering if anyone has tried using new Java 7 language features with Android? I know that Android reads the bytecode that Java spits out and turns it to dex. So I guess my question is can it ...
6
votes
1answer
1k views

bytecode injection on dalvik

I have asked this on android platform, but did not receive a reply. I have referred to this thread, but could not find what post he was referring to (Dynamically Generating Dalvik Bytecode into a ...
8
votes
2answers
909 views

Reference on Dalvik or Java Virtual Machines?

I am looking into Dalvik bytecode currently but as I lack a compiler background, I am finding it a little hard to grasp the design. I am pretty sure no one has written a book on Dalvik (or I could be ...
0
votes
1answer
576 views

Triying to generate Dex bytecode at Runtime

I have tried to invoke DX Tool at Runtime. My main idea is to generate a Dexfile and then load into Android System dynamically. I have some mistakes but i think that it is possible to generate a dile ...
6
votes
2answers
497 views

Java optimizations : bytecode-only vs JIT

Developping games for android devices, I need to target devices that have no JIT at all, and only rely on bytecode optimizations. I wonder if the set of these optimization is empty or not... ...
1
vote
1answer
136 views

Are there a specification of an API or samples for the DX tool for Android!

I'd like to use DX Tool API for triying to generate ad-hoc a dexfile invoking this library. Are there any sample or any specification of this library? Thanks for all Greetings!
2
votes
4answers
1k views

Is it possible to inject code in an android application?

I would like to inject code in an android application at runtime. I have tried to use dx tool to generate a dexfile in the sdcard but when i want to instantiate, it fails. Are there any tools to ...
3
votes
1answer
514 views

Does the Dalvik file format (*.dx) support more instructions than a Java .class file?

Is there anything the Dalvik VM supports (in terms of bytecode) which is not used currently because the .class files don't have it? As an example, if people would write their own Source-to-DX ...
2
votes
3answers
936 views

JiBX on Android (or any other build-time bytecode manipulating library)

I'm considering the use of JiBX for a project that will have to run on both Blackberry and RIM. While it seems like J2ME use of JiBX has been considered by the community (as per JiBX jira tickets), ...