Questions tagged [dex]

.dex files are compiled Android application code files.

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.

867 questions
0
votes
1 answer

Stripping out AWT references from Android Dex file at compile time

I am getting warnings in my Android app saying that my bytecode makes illegal references to java.awt and in some cases the runtime seems to replace invalid opcodes. 09-22 19:36:41.688: W/dalvikvm(831): VFY: unable to find class referenced in…
user1678406
  • 1,715
  • 2
  • 11
  • 11
0
votes
1 answer

Android - dx trouble processing - Ill-advised or mistaken usage of a core class 2012, Android 4 update

When I received the "Ill-advised or mistaken usage of a core class" error while attempting to build my application, I searched through Stackoverflow and, as some suggested, used ant and jarjar to build the application. The ant build failed at the dx…
0
votes
1 answer

How to interprete this disassembled line by using dedexer?

The following is snipcode disassembled using dedexer on a android market app, in the invoke-virtual, I don't understand what can the original Java code be: invoke-virtual…
user618815
0
votes
1 answer

Android No expanded opcode for R.java

I have an important problem while compiling Android Application. Using Windev Mobile, it generates java code, compile and create apk, however, when the apk creation, an error happens: command line: "myjavapath\java.exe" -Xmx1024m…
Jeelo
  • 63
  • 2
  • 9
-1
votes
1 answer

How to recompile .java back to .dex

I have decompiled .dex to .java using JADX . Now how do I compile back the whole program into .dex file?
-1
votes
1 answer

Android Java app Crash on start (out-of-order static field indexes 65535 and 0)

i have problem in my Android project , my project is very big and have many methods so recently i tried to add an TextView in my XMl file and it work , but when i try to add ID for the TextView my app crash , so i changed the ID of my TextView , but…
-1
votes
1 answer

How to decompile a sequence of bytes from dex file using androgurad (or any other python tool)?

I have a sequence of bytes extracted from dex file, and I want to decompile it using androguard or any other python package My sequence looks like: b'\x17\x8a\\\x05{\x00p\x00\x00\x00xV4\x12\x00\x00\x00\x00\x00\x00\x00\x00\x80\x04'
Lukas
  • 403
  • 5
  • 11
-1
votes
1 answer

What framework does forkdelta use for its frontend?

forkdelta URL:https://forkdelta.app forkdelta github:https://github.com/forkdelta/classic-frontend I checked forkdelta github page, but I can't understand forkdelta's frontend framework. Is it Vue, or React or original html? Please tell me…
-1
votes
1 answer

How Recompile Jar to dex using android phone?

I have extracted Dex file using Apk editor And decomplied using Jadex Now I want to recompile Jar to Dex using android Phone can any one help me ?
Jawad
  • 1
-1
votes
1 answer

Android: Unable to merge dex when combining google play services location and apache commons.io

When i try to run an (newly created) Android app using the gradle-file below i get the following error: Error:Execution failed for task ':app:transformDexArchiveWithExternalLibsDexMergerForDebug'. java.lang.RuntimeException:…
-1
votes
2 answers

Android Studio Gradle Build Error Unable to merge dex

I am new To android studio. I have made a Java project which mainly works with an SQLite db (in assets folder). I migrated This project to android studio from netbeans. When I press run and choose an emulator, Gradle Build Tasks start to execute and…
bcsta
  • 1,963
  • 3
  • 22
  • 61
-1
votes
1 answer

ClassNotFoundException when trying to build an existing Xamarin project

I have received an existing Xamarin project that I need to work on before we can release it. I have tried installing it on 2 different devices: Nexus 5, running Android 6.0 (API 23) Emulator Android 4.4 (API 19) - Emulated through Visual Studio…
-1
votes
1 answer

Using Google PlusOne button dex

I want to use a Google Plus one button in my application. In gradle, I have compile 'com.google.android.gms:play-services:8.3.0' But since the library huge, I get the error: Error:The number of method references in a .dex file cannot exceed…
techtinkerer
  • 1,280
  • 2
  • 15
  • 26
-1
votes
1 answer

Execution failed for task ':app:transformClassesWithDexForDebug' - JDK issue?

I really don't know why all of a sudden this error has started appearing everytime I try to deploy an app. I wait for an hour and then an error is returned and the app doesn't get deployed. What can be done to resolve this error along with anything…
wbk727
  • 8,017
  • 12
  • 61
  • 125
-1
votes
1 answer

NoClassDefFoundError & Multiple dex files define issues.. UGH

Ok so i'm stupid problems right now.. I'm trying to use google play services in my app. i have referenced the library, google play serves, in both my app and BaseGameUtils, and then i references google play services as a library to the…
1 2 3
57
58