Tagged Questions

Dalvik is the virtual machine used by Google's Android operating system.

learn more… | top users | synonyms

128
votes
31answers
94k views

“Conversion to Dalvik format failed with error 1” on external Jar

In my Android application in eclipse I get the following error: UNEXPECTED TOP-LEVEL EXCEPTION: java.lang.IllegalArgumentException: already added: Lorg/xmlpull/v1/XmlPullParser; .... Conversion to ...
28
votes
5answers
6k views

Which programming languages can I use on Android Dalvik?

In theory, Dalvik executes any virtual machine byte code, created for example with the compilers of AspectJ ColdFusion Clojure Groovy JavaFX Script JRuby Jython Rhino Scala Are there already ...
26
votes
2answers
1k views

How to integrate Scala into core Android platform?

I am interested in integrating Scala (or some other non-Java JVM-language) into the android platform. I am not referring to writing an android application with Scala, that I did early early on, but ...
24
votes
5answers
7k views

What can you not do on the Dalvik VM (Android's VM) that you can in Sun VM?

I know that you can run almost all Java in Dalvik's VM that you can in Java's VM but the limitations are not very clear. Has anyone run into any major stumbling blocks? Any major libraries having ...
19
votes
3answers
895 views

What optimizations can I expect from Dalvik and the Android toolchain?

I'm working on a high-performance Android application (a game), and though I try to code for readability first, I like to keep in the back of my mind a picture of what is happening under the hood. ...
16
votes
8answers
23k views

Android: Conversion to Dalvik format failed: Unable to execute dex: null

I'm trying to use the SmugFig SmugMug API on Android. It was designed for J2SE I would imagine, so I'm not sure it will even work on Android, but I figured it was worth trying as opposed to trying to ...
13
votes
2answers
2k views

Why is the JVM stack-based and the Dalvik VM register-based?

I'm curious, why did Sun decide to make the JVM stack-based and Google decide to make the DalvikVM register-based? I suppose the JVM can't really assume that a certain number of registers are ...
11
votes
4answers
1k views

Are primitive types garbage collected in Android?

I know this may be a dumb question, but my background is more in c++ and managing my own memory. I am currently cutting down every single allocation that I can from one of my games to try and reduce ...
10
votes
2answers
358 views

Does Android plan to support Java7?

As Android does not currently support java7, I find myself wondering if they have made an official comment if they are working on supporting it? Cheers,
10
votes
3answers
705 views

Is Dalvik's memory model the same as Java's?

Is Dalvik's memory model the same as Java's? I am particularly interested in whether reads and writes of reference and non-long/non-double primitive variables are atomic, but I would also like to know ...
10
votes
5answers
6k views

Using static variables in Android

In android, are using static variables a recommended practice? E.g, implementing a Singleton pattern in Java, I usually do: private static A the_instance; public static A getInstance() { if ...
10
votes
1answer
22k views

JRE on Android

This might sound like a stupid question, but google didn't help me. Is there a JRE available for Android? If so which version is it? Are there any major features missing? If not does that mean all ...
9
votes
2answers
3k views

How can I compile Dalvik to run it locally on Linux?

What are the minimal steps necessary (including retrieving the source code) to compile and run just the Dalvik virtual machine on Linux? Thanks.
9
votes
17answers
16k views

Conversion to Dalvik format failed with error 1 with javax/net/SocketFactory.class

Encounter this problem when trying to Build Project getting such output in console: [2010-07-19 23:29:23 - myProject] trouble processing "javax/net/SocketFactory.class": [2010-07-19 23:29:23 - ...
9
votes
5answers
2k views

Why are there so many floats in the Android API?

The default floating point type in Java is the double. If you hard code a constant like 2.5 into your program, Java makes it a double automatically. When you do an operation on floats or ints that ...
9
votes
4answers
6k views

How would you improve Dalvik? Android's Virtual Machine

I am currently writing a paper on the Android platform. After some research, it's clear that Dalvik has room for improvement. I was wondering, what do you think would be the best use of a developer's ...
8
votes
1answer
516 views

Dalvik VM & Java Memory Model (Concurrent programming on Android)

I am working on Android projects which involve the lot of concurrent programming and I am going to implement some custom inter-threads communication stuff (the one from java.util.concurent are not ...
8
votes
1answer
756 views

How does Mono for Android work?

I am interested in how Mono for Android (by Novell) works. My biggest question is around the actual runtime's that are used. Is MfA providing a Mono runtime that wraps and calls down to the Dalvik ...
7
votes
4answers
672 views

what is the most viable free alternative to java language? [closed]

With Oracle suing Google over Dalvik's patent infringements, I'm wanting to get off the Java bus I've been on for 10+ years. I really enjoy coding in Java, love the tools (eclipse, profilers, ...
6
votes
4answers
466 views

OutOfMemory error though free memory is available

I'm seeing a pretty odd problem. Essentially sometimes large bitmap memory allocations will fail even though there's apparently tons of memory. There are a number of posts that appear to ask a similar ...
6
votes
1answer
270 views

Double checked locking in Android

According to many, the somewhat common Double-Checked Locking idiom is broken for java unless you're running 1.5 or later and use the volatile keyword. A broken double-checked lock sample: // Broken ...
6
votes
2answers
1k views

Having trouble getting Joda-time to run on Android

I'm learning Android and have need for dates/times. I was recommended Joda-time by a colleague, which seems to be exactly what I need to make progress. Unfortunately, I'm having trouble getting it to ...
6
votes
1answer
6k views

How to load a Java class dynamically on android/dalvik?

I'm wondering if and how one can load dex or class files dynamically in dalvik, some quick'n'dirty test function I wrote was this: public void testLoader() { InputStream in; ...
5
votes
3answers
3k views

What's the best way to learn Smali (and how/when to use Dalvik VM opcodes)?

I know Java, and learned C but never used it. I do not know any form of assembly, either for a virtual machine or a real one. What's the best way to learn how to hack Smali?
5
votes
1answer
507 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 ...
5
votes
4answers
1k views

why android is built on a VM (Dalvik) [closed]

I am curious to know what made google choose to develop android's framework on java VM. In the process of writing code for android for nearly 6 months now, I observed that running code on a VM in a ...
5
votes
3answers
2k views

Class initialization issues loading java.util.logging.LogManager in Android Dalvik VM

I've done changes in an Android native library and installed a new system.img file but am now getting an unrelated Error on startup. I can get past it by swallowing the error but I wanted to know if ...
4
votes
3answers
1k views

Eclipse stepping into class in android

I have a simple android project that I am trying to debug inside of Eclipse. When I run it in debug mode and use the "Step Over" button, it frequently seems to want to go into Android code (I don't ...
4
votes
2answers
723 views

How is Android permission enforced?

If I call socket() function in JNI C methods, the application will still fail with a permission error. And if I put a uses-permission line in AndroidManifest.xml, the problem is fixed. So it seems ...
4
votes
2answers
530 views

How to analyse Dalvik GC behaviour?

I am developing an application on Android. It is a long running application that continuously processes sensor data. While running the application I see a lot of GC messages in the logcat; about one ...
4
votes
2answers
1k views

Dalvik JIT compiler on Linux X86 or Mac build

As I've heard from Google IO 2010 session, Dalvik JIT compiler just support ARM processor. Do this mean my own build of Android source on Linux X86 or Mac OS X can not support JIT compiler? Should I ...
4
votes
4answers
2k views

Dynamically Generating Dalvik Bytecode into a running Dalvik/Android application

This question has been asked(and answered) many times about dynamically generating and loading java bytecodes at runtime into a running Dalvik VM, but is there any way to load dex files/bytecodes into ...
4
votes
2answers
986 views

Chaning coding style due to Android GC performance, how far is too far?

I keep hearing that Android applications should try to limit the number of objects created in order to reduce the workload on the garbage collector. It makes sense that you may not want to created ...
4
votes
5answers
840 views

Common performance pitfalls on Android?

What are the most easy mistakes to make that can be performance sinks on Android? The documentation mentions "some floating point operations" can be "on the order of milliseconds" - has someone ...
3
votes
2answers
63 views

How does the Dalvik VM save and restore its registers between method calls?

Semantically, the Dalvik VM has a fresh set of registers for each method, and does not have instructions to access the call stack. But in terms of its implementation, the registers should be saved ...
3
votes
1answer
506 views

Android Build fail - java.lang.IllegalArgumentException: already added: Lcom/google/api/client/escape/CharEscapers;

I just prepare small update for my android app, but I get this strange bug when I try to build my app (in debug mode). It will be great if someone smarter could look at this to figure out what might ...
3
votes
1answer
95 views

ridiculous proc/meminfo in android. What does 'size' mean?

I've been digging into memory usage in my app. So, to know memory usage, I write some scripts that runs meminfo (each line shows after 10second) NativeSize DalvikSize TotalSize 89556 5895 95451 ...
3
votes
2answers
1k views

What is Dalivik and dalvik-cache?

I know this may be a basic question in android.But any one having idea what is dalvik and dalivik-cache? Please share it.Thanks
3
votes
0answers
158 views

Dalvik error with JRuby with SL4A

I'm getting this error when trying to run a jruby script on SL4A Dalvik VM unable to locate class 'org/jruby/Main' java.lang.NoClassDefFoundError: org.jruby.Main I see the jruby.jar file is ...
3
votes
2answers
333 views

Is it possible to dynamically load a library at runtime from an Android application?

Is there any way to make an Android application to download and use a Java library at runtime? Here is an example: Imagine that the application needs to make some calculations depending on the ...
3
votes
3answers
320 views

Java optimizations: (Hotspot/Dalvik) Optimization of final method returning a constant?

Can anyone tell me if either Hotspot or Dalvik is smart enough to inline calls to a final method returning a constant (static final) int value? Ideally the method call would be replaced by the ...
3
votes
1answer
797 views

Dx no classfiles specified Conversion to Dalvik format failed with error 1

I know this is a done to death topic, and I probably shouldn't be repeating it, but it is extremely annoying, because I've tried all the methods outlined before to resolve it and it still gives me an ...
3
votes
4answers
361 views

Python code translation to JVM

Is there such a thing as a "translator" (for lack of a better word in my mind now) that translates Python code directly to JVM / Dalvik bytecode? Would be great for writing Android applications in ...
3
votes
3answers
2k views

Fundamental differences between Linux OS and Mobile OS (android)

Hi I'm trying to find out about what the differences are in operating systems of mobile devices compared to those in desktop machines. Specifically things like memory management, scheduling etc. I'm ...
3
votes
3answers
4k views

ClassNotFoundException Android

So I ran into a problem today while working on my Android program. I have a class that turns that an XML string into a Java object (third party) and it works fine in as a regular java project but on ...
3
votes
1answer
2k views

Automated testing in Android development

I have an ordinary project with JUnit tests that are connected to the classes in my Android Project. I want my server to run some JUnit tests in my testproject everytime I commit my code from my ...
2
votes
2answers
56 views

Android: How to fork a new process

I want to run two processes in the same DalvikVM. This means that I want to run a first app and then that this app starts the second app. And I want that this two apps are then running in the same ...
2
votes
1answer
101 views

Conversion to Dalvik format failed with error 1 - Why?

I only added to an existing fully working project, the file com/android/vending/billing/IMarketBillingService.aidl (I didn't add anything else (from the market_billing sample) yet, since I am not ...
2
votes
1answer
155 views

Dalvik mess with library code and project cannot runs anymore

After updating ADT and Android SDK on my machine, all my projects get errors. Now I have this: PS: This error happens when running the project that have a jar as dependency (it was compiled with ...
2
votes
7answers
972 views

“Conversion to Dalvik format failed with error 1” after update to ADT 14

After updating to the latest developer tools, ADT 14, my Android project that includes library projects will no longer run producing the error: Dx UNEXPECTED TOP-LEVEL EXCEPTION: ... already added: ...

1 2 3 4