Dalvik is the virtual machine used by Google's Android operating system.
0
votes
1answer
28 views
DVM instance creation per activity or application
For Android, each application has its own instance of DVM or each activity of an application has its own DVM instance i.e. the instance of DVM is created based on the application or activity?
0
votes
0answers
52 views
Implementing Hot code swap for Dalvik
My company does a lot of Android development and we're hampered by the long compile, dex, package, deploy cycles. Given the current state of the Dalvik VM and tools, is building something like JRebel ...
0
votes
1answer
55 views
Out Of Memory Exception when caching bitmaps
I am designing an application where i want to store 12 bitmaps in memory for quick access. I am retrieving these images from the disk cache or downloading them if they are not present. The issue that ...
0
votes
1answer
42 views
What is going on with java.nio.charset.Charsets?
So, as far as I can tell, this class doesn't exist in the standard Java library and is an addition in Dalvik. Is this correct?
My reason for thinking this is the android class "NdefRecord" contains ...
0
votes
1answer
14 views
In android dalvik invoke-xxx opcode, what if the argument size is more than 5
in the davik vm/mterp/out/InterpC-portable.cpp code, when interpret invokeMethod, I find it can only handle the case when count is less or equal than 5:
switch (count) {
case 5:
...
0
votes
0answers
40 views
Conversion to Dalvik format failed with error in Android
I know this question has been asked a lot but I cannot seem to find the solution to the problem:
[2013-05-06 14:22:12 - MobileBim-android] Dx 1 error; aborting
[2013-05-06 14:22:12 - ...
0
votes
3answers
63 views
In Java, can operations on object fields bypass the stack?
Java heap only stores objects, and stack only stores primitive data and object reference.
Consider A.a = B.b , where A.a and B.b are int.
In my understanding, a JVM will first GET the value of A.a ...
0
votes
1answer
238 views
java.lang.noclassdeffounderror: com.google.android.gms.R$styleable nothing helped me
I have such activityclass code:
package com.pavel.exchanger;
import android.os.Bundle;
import android.app.Activity;
import android.support.v4.app.FragmentActivity;
import android.view.Menu;
import ...
0
votes
1answer
66 views
how to let dalvik dump whole app heap memory when OOM happens
I am a beginner for Android develop. And currently I am looking for an automatic way to dump memory when out of memory error happens. I read that adding -XX:+HeapDumpOnOutOfMemoryError ...
0
votes
0answers
46 views
Wait_for_concurrent &co on setcontentview
I'm a new Android Developer, but i have a weird problem.
When I launch my application on my phone (I test on it - galaxy s3 I9300) I have a dalvik problem :
04-26 21:01:20.780: I/Process(8739): ...
-1
votes
1answer
38 views
android (apache harmony) garbage collection
The Sun JDK has a java.lang.ref.Finalizer class, which is used during garbage collection. In Apache Harmony, the standard library that Android is based on, does not have the class.
My question is: ...
0
votes
0answers
21 views
Determine from where a class is loaded on Android System
I'm currently kind of reverse engineering an Android Multimedia Box. There is one apk, which defines several Activites, but has no classes.dex (and no odex) at all. So the classes have to be loaded ...
1
vote
1answer
32 views
dynamic class reloading in dalvik on Android
I am trying to understand if I can dynamically reload an existing class / load in a new class in the Dalvik vm running on Android. Searching online gives me a few mixed answers:
What can you not do ...
0
votes
1answer
38 views
Is there a way to close a dynamically loaded library in Android?
As a preamble for non-Android people (some Linux folk may know the answer with this info):
Every application in Android is run in an instance of the Dalvik Virtual Machine. When starting an ...
2
votes
1answer
42 views
Null check emitted for 'this' access?
When you access an own instance field via the this reference (for example, an object or int field from a private method), the generated Android Dalvik bytecode will contain an iget bytecode ...
1
vote
2answers
273 views
Multiple dex files - Conversion to Dalvik format failed - Unable to execute dex
I have 2 app versions - pro and lite. They are both already on the market at v1.01. I am trying to release v1.1 for both. This update includes SwawrmConnect integration in order to use their global ...
1
vote
1answer
148 views
How does garbage collection work in Android 4.2 Jelly bean Dalvik VM?
Edit : Is this statement "So in android 2.3 concurrent mark and sweep is used for stack related objects treating everything as pointer and copying garbage collection is used for the objects in the ...
0
votes
0answers
29 views
Connecting changed Dalvik with ADT and recording hot traces?
I am instrumenting dalvik source code and I have couple of questions:
When I do changes to Dalvik source code, I can do 'mmm dalvik snod' in command line to get the updated Dalvik VM (which is ...
1
vote
0answers
41 views
Dependencies issues when building dalvikvm on x86
I've been trying for the past few days to compile dalvikvm on x86 systems in order to only run Dalvik applications (no native, dalvikvm only) w/o all the throughput of dalvik-arm-qemu-emulate-x86, I ...
0
votes
0answers
59 views
conversion to dalvik format failed with error 1 on andengine live wallpaper
I built a parallax live wallpaper with andEngine. I exported the .apk without any problems. I copied the project, updated the package and app name and everything needed to republish as a new .apk. The ...
4
votes
2answers
95 views
ScheduledExecuterService.scheduleAtFixedRate creating multiple thread pools - Android
I have a AsyncTask called UploadManager in my Android Application, that checks for processed items, and uploads them to the server.
For this purpose I'm using the ...
0
votes
1answer
64 views
ProGuard still stripping Facebook code? (Or disable ProGuard!!)
I've really had it with ProGuard / Release builds for Android. I've tried to upload my app to the play store but every time I fix something another error shows up. And this only happens in release ...
2
votes
3answers
294 views
Is there any Java-based C/C++ compiler?
I understand that if it even exists it's N times slower than compiler written in native code and compiled for concrete arch. But anyway.
The main purpose is to compile few small c/c++ source files on ...
0
votes
1answer
70 views
How does dalvik findlibrary?
first, in System.java, it calls Runtime to loadLibrary.
public static void loadLibrary(String libName) {
SecurityManager smngr = System.getSecurityManager();
if (smngr != null) {
...
2
votes
2answers
496 views
java.lang.ClassNotFoundException in dalvik.system.BaseDexClassLoader.findClass
This error is driving me crazy. My app crashes at startup when downloaded from the Google Play Store with the error:
java.lang.ClassNotFoundException
in dalvik.system.BaseDexClassLoader.findClass
...
0
votes
1answer
69 views
RegisterNatives failed for 'android/webkit/BrowserFrame'
Building a ROM from source, but stuck at a point. I have understood the error but have no idea exactly what should the fix be.
ROM stucks on boot and I see this
E/dalvikvm( 353): ERROR: couldn't ...
0
votes
1answer
131 views
Mockito on Android emulator
Android newbie here trying to use my favorite Java testing tools in Android. I am attempting to use Mockito 1.9.5 as outlined in the following blog post but cannot get the tests to run on my emulator ...
0
votes
2answers
70 views
Eclipse debugging Android app - debugger shows wrong line executing
While implementing Twitter integration in my app, I discovered the following oddness of the Eclipse debugger. What is causing this?
I'm using this AsyncTask for getting a request token from twitter ...
2
votes
1answer
43 views
Conversion to Dalvik format failed in my console
I have one problem in my project Android. My project compile, but when I run the application, I've got this message "Conversion to Dalvik format failed: Unable to execute dex: Multiple dex files ...
0
votes
3answers
167 views
Android: OutOfMemoryError at BitmapFactory.nativeDecodeAsset (Honeycomb 3.0 and above)
Since Android introduced a new memory management of Bitmaps in Android 3.0 (Bitmap Data is now allocated inside the Dalvik Heap), I get this OutOfMemoryError Error which crashes my App.
Basicly I ...
1
vote
1answer
99 views
using libssl.so in native Android app
I'm writing a native lib (mylib.so) for Android, using the NDK. Mylib.so depends on libssl.so.
The Android NDK doc tells me I shouldn't use libssl.so from system/lib, because it's not part of the ...
1
vote
1answer
238 views
Dalvik - local variable type mismatch when adding java file to project - Without proguard
My android project compiles and builds fine, however, when I'm adding NanoHTTPD java file (a pure java 1 file http server) I am getting the following error when launching (without proguard).
...
2
votes
3answers
155 views
During export of signed app, eclipse crashes
I have an android application that I exported a signed version perfectly on March 17, 2013. Then on March 19, 2013 I updated the Facebook SDK and Android SDK Manager, then tried to export my a signed ...
0
votes
0answers
297 views
Sliding Menu+Actionbar Sherlock - VFY:Unable to resolve static field crash
I have been working on the android swipe menu library and seem to have installed in correctly along side the actions bar sherlock library. I tried to open a demo example but keep on getting the same ...
2
votes
2answers
438 views
Android: my application is too large and gives “Unable to execute dex: method ID not in [0, 0xffff]: 65536”?
I am trying to integrate my application with Box, Dropbox, and Google Drive. All 3 of these services require a number of 3rd party jars. Additionally, my application already requires a few 3rd party ...
0
votes
2answers
134 views
Java android optimization. Non-static or static method?
I have a static class with a method in it that I run a few hundred times. Currently, everytime the method is run, it creates two different stack objects. If I were to make that class non-static so I ...
3
votes
3answers
344 views
How to solve the issue with Dalvik compiler limitation on 64K methods?
My team and I have inherited a large Android project from another team. The whole application with all the included libraries is reported to have around 35000 methods. We now have the task to ...
0
votes
0answers
63 views
Simbols not resolved when testing with Eclipse ADT
I am trying to debug an Android application using eclipse ADT.
I can launch the test, but I receive a lot of LogCat warning messages like the following...
03-12 20:36:16.731: E/dalvikvm(26605): ...
2
votes
0answers
199 views
What optimizations does Dalvik JIT compilation do? [closed]
This is similar to this question but is being asked over two years after, with Dalvik JIT compilation being there for a long time now.
I want to know the kind of optimizations Dalvik will do for me, ...
-2
votes
1answer
62 views
Android battery folder missing [closed]
I want to read contents of /sys/class/power_supply/battery/ on Android v4 build number 6.1.A.2.55 (sony xperia S). However, the battery folder is missing.
Currently, /sys/class/power_supply/ have ...
5
votes
1answer
124 views
Dalvik is looking for .so file with '.0' extension - why?
I have started developing a very simple Android application that consists of three parts:
the Java application itself
a pre-built shared library (we'll call it libfoo)
another shared library that ...
0
votes
3answers
179 views
Unable to execute .java file through Davik VM
I am following this link
I have first executed this command successfully.
javac <path + filename>.java
Then after when I am trying to execute following command I facing an error "class ...
1
vote
1answer
141 views
Android javac and dx - trouble processing, class name and path do not match
I'm using SpartacusRex's Terminal IDE and another app, DroidEdit, to build and run java applications on Android. A simle one-file Hello World builds and runs flawlessly, however when i introduce ...
3
votes
2answers
389 views
Android dalvik garbage collection may crash?
We're working on a project for Android jelly bean. Our platform is arm-based, and the kernel version is 3.1.10. In our development process, we found that there is very low probability that the ...
1
vote
2answers
103 views
Exectution of Dalvik VM directly on desktop
Is it possible to execute task directly on Dalvik VM machine as we run other virtual machines on desktop system?
0
votes
0answers
84 views
Does android.jar file contain support for xmlbeans?
Does android.jar file contain support for xmlbeans?
I have experienced Conversion to Dalvik format failed with error 1 with UNEXPECTED TOP-LEVEL EXCEPTION:
java.lang.IllegalArgumentException: already ...
1
vote
1answer
323 views
Didn't find class “Foo” on path: DexPathList
I want to build and run Dalvik VM on Ubuntu x64, following this guide: PATH/TO/AOSP/dalvik/docs/hello-world.html.
My code branch & host machine is like this:
...
1
vote
1answer
43 views
Where to get the source to Dalvik?
When I try to get the Dalvik source the link listed on the project page is not working:
http://code.google.com/p/dalvik/
This link is listed and is not working:
...
0
votes
1answer
228 views
Android/Adobe air crash report: java.lang.UnsatisfiedLinkError
i am getting this error inside Google's "Crashes & ANRs". The application built with Adobe Air and packaged as captive runtime.
java.lang.UnsatisfiedLinkError: nativeSurfaceCreated
at ...
0
votes
1answer
96 views
Can Dalvik convert anonymous inner classes to dex format?
I am trying to build dex file from xmlbeans-2.6.0.jar and xmlbeans-2.3.0.jar.I am getting following error
[2013-02-14 14:57:08 - SOSTestProject] Dx warning: Ignoring InnerClasses attribute for an ...




