Tagged Questions

Android programs are compiled into .dex (Dalvik Executable) files, which are in turn zipped into a single .apk file on the device. .dex files can be created by automatically translating compiled applications written in the Java programming language.

learn more… | top users | synonyms

103
votes
9answers
70k views

decompiling DEX into Java sourcecode

Are there any tools or recipes for turning Android DEX (VM bytecode) files into corresponding Java sourcecode?
25
votes
3answers
30k views

Is it possible to decompile an Android .apk file?

Are the users able to convert the apk file of my application back to the actual code? If they do - is there any way to prevent this?
7
votes
1answer
401 views

Adding Google Guava to Android project - significantly slows down the build

After adding Google Guava r09 to our Android project the build time increased significantly, especially the DEX generation phase. I understand that DEX generation takes all our classes + all jars we ...
5
votes
1answer
99 views

Porting java server to Android

I'm working on developing a medical records system using OpenMRS as a backend for Android. OpenMRS is dependent on some seriously heavyweight libraries, including Hibernate and Spring. "Dexing" the ...
4
votes
10answers
5k views

Unable to execute dex: Multiple dex files define Lcom/myapp/R$array;

Since updating to ADT 14 I can no longer build my project. It was building fine prior to updating. The error: [2011-10-23 16:23:29 - Dex Loader] Unable to execute dex: Multiple dex files define ...
4
votes
1answer
338 views

ClassLoader to replace a pre-loaded class?

General question: Is it possible to use a ClassLoader to replace a pre-loaded (by the system, e.g. found in Android's %android%/frameworks/base/preloaded-classes file) class? Specific: I am ...
4
votes
4answers
986 views

Android build works in Eclipse but not with Ant (“already added”)

My Android project uses several git submodules marked as Android Libraries. These submodules all have different uses of the ORMlite Android jars and thus have the ORMlite jars included in their libs ...
2
votes
1answer
82 views

Error while making classes.dex using ant

I just simply created my android project using android create project -n MyApps -t 3 -p "./" --package com.ith -a MyAppActivity all necessary files are created but when i tried to build with ant ...
2
votes
2answers
108 views

Error when building apk - “Multiple dex files define Lcom/google/ads/Ad”

I've been tearing my hair out over this one, for the past 3 hours I've been trying to fix it but have been unable to. I've created an android app and I'm ready to put it on the android market but I ...
2
votes
2answers
313 views

Generate a Dex file with python or other language

Is it possible to generate dalvik bytecode at runtime using a language such as python, perl or something similar? Thanks
2
votes
1answer
2k views

How do I make isolated dalvik

I am tracing the Dalvik machine source code. According that, I want to make Dalvik runnable. I have seem the dvk project. But there has many problem result in fault. Are there have any way to make ...
1
vote
1answer
162 views

(Conversion to Dalvik format failed with error 1 ), None of the posted solutions is working for me

I tried most of the solutions posted in the net, but none of them resolved my problem to execute my andriod project. tried solutions. sol 1: clean & Rebuild the project after removing all the ...
1
vote
2answers
121 views

Tried to reverse engineer my app, but got some weird-looking file tree

I lost the code from all the apps I built last year (thunder against my hard disk, no backup for any app). As they were rather simple apps, I put them under reverse engineering process. I have already ...
1
vote
3answers
3k views

Dex Loader Unable to execute Multiple dex files define

Okay, now im really stuck here. I don't know what to do, where to go or ANYTHING! I have been trying to uninstall, reinstall, both SDK and Eclipse-versions, trying to Google this out, but nu-uh... ...
1
vote
0answers
200 views

Managing android projects from command line

I am managing and running my android app from command line without using ant,i followed following steps --generated R.java --compiled R.java, .java in src to .class files --assembling set of class ...
1
vote
1answer
589 views

Reflection using DexClassLoader while linked to external JAR library

I am trying to put together a plugin architecture for an Android application. I have a host application that will examine a directory for apk "plugin" files, load them in a DexClassLoader, and invoke ...
1
vote
0answers
396 views

DexFile.loadDex hangs

Any android experts could shed some light why this method could hang? When I pause the thread and look at the stack: Thread [<13> Thread-15] (Suspended) DexFile.openDexFile(String, String, ...
1
vote
1answer
334 views

Assemble a dex file

If you take an apk off the android filesystem and change the extention to .zip then open one of the xml files it won't work because it's encoded in dex. But you can run ./adb dexdump -l xml layout.xml ...
1
vote
0answers
1k views

Android dex to convert to java class format

Is there any tool available to convert android dex file format to java class format? I've looked at dex2jar, but it looked very early in development. I'd like something that is stable enought for use. ...
0
votes
1answer
42 views

getting dex to find an external jar in ant

I am creating ant build scripts for our applications. Our apps depend on a couple jars that are created in android library projects. Using the auto generated ant scripts from Android for the ...
0
votes
1answer
37 views

How can I disassemble an Android dex file within Eclipse?

I want to disassemble and view the contents of an Android dex file within Eclipse. How can I do this?
0
votes
0answers
57 views

Android - Creating Release build Issue - Unable to execute dex: Multiple dex files define LAbstractLevel;

Hi I'm getting "Unable to execute dex: Multiple dex files define LAbstractLevel;" when trying to create the Release unsigned build. I followed ...
0
votes
0answers
26 views

Precompiled dex library

my android project contains a plenty of java libraries that are compiled to dex each time i launch my application. The libraries do not change. Is there any way to precompile those libraries to dex? ...
0
votes
0answers
56 views

Add new classes or resources in the .apk application file at runtime

I'm working on a project, one of the task of this project leads me to find a way to modify the apk file of an android application, adding or removing resources from it. I find a useful library called ...
0
votes
1answer
234 views

Eclipse: Unable to execute dex: stackOverflowError

When trying to build my android project I get the following error. I've been able to compile without complain on other machines with (what I believe to be) the exact same setup (ubuntu 11.10/eclipse ...
0
votes
1answer
504 views

Unable to execute dex: wrapper was not properly loaded first

I can't run my project. I've download the project from here. When i'm going to run this project. It raises this error : - [2011-11-02 06:22:04 - Dex Loader] Unable to execute dex: wrapper was not ...
0
votes
2answers
778 views

how to extract code of apk file

Actually i trying to extract code of an .apk file called cloudfilz.apk and wanted to manipulate in its source code so i followed the steps given below:- make a new folder and put .apk file (which you ...
0
votes
2answers
555 views

dex fails on ant build for Scala on Android

NOTE: with a little modification to the project I was able to build again using this: https://github.com/imsizon/ant-android-scala . For anyone having trouble building Scala on Android it's a good ...
0
votes
4answers
1k views

Multiple dex files error when compiling with ant or eclipse

I am unable to build my application I am running the latest build tools downloaded today, this started happening after the update. -dex: [dex] Converting compiled files and external libraries ...
0
votes
2answers
250 views

Dex file in android

I have some doubt with DexFile what is Dex file in android? how Dex is working for android? how it is use in debugging android app Is it similar kind of java class file? I need specific ...
0
votes
1answer
202 views

Android binary disassembling and debugging protection

let's assume I would like to protect the Android binary against disassembling or byte code debugging - are there any solutions for that available on market for both java and native C/C++ code? Thanks ...
0
votes
1answer
132 views

Is it possible to debug classes in a third-party Android application?

I have an Android library that I distribute as a jar to third-parties who integrate it into their applications. A particular client is having a problem I wish to debug. Is it possible to rebuild their ...
0
votes
1answer
372 views

Android: Load Activities from external dex

Is it possible to load activities from an external dex-file? I'm thinking of some plug-in style-architecture, where an application can be extended by downloading dex-files with activities and classes ...
0
votes
2answers
1k views

apk to dex conversion

How to convert .apk files to .dex files? Please help.
0
votes
1answer
368 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 ...
0
votes
1answer
238 views

How can I use jar libraries in Android compiled with packages that Android doesn't have

I need to import a couple of jars that where compiled under the full implementation of java. I know that Android doesn't use all the packages that java has to offer. My question is: Is it possible to ...
-1
votes
1answer
240 views

how to convert .jar or .class to .dex file?

I'm going to edit opera mini v6.5 server because it is blocked in our country now i have unpacked the .apk file extract classes.Dex then convert in via dex2jar.bat now modified the server. here is a ...