Tagged Questions
0
votes
0answers
95 views
Can't dump meminfo error: Android 4.2.1
I got a strange error with my ACRA error reporting system which I cannot figure out what is causing this. I searched on the internet and there is very little to find out about this issue at first ...
1
vote
3answers
308 views
How to make Java Thread Dump in Android?
I just want to get all dumps from java virtual machine threads, to look at what the threads lock and what threads waiting to unlock some resources. Something like is described here.
I've tryed to kill ...
0
votes
1answer
288 views
dumpsys not running in 2.3
i ran the following instruction Process p = Runtime.getRuntime().exec("/system/bin/dumpsys media.player")//INSTRUCTION TO DUMP MEDIA PLAYER INFO; in android 2.3.3 but i am getting permission denial.
...
0
votes
1answer
4k views
writing dumpstate to file android
I need the bugreport option that you can use in adb to go to a file on the sd in my app. I found Android; using exec("bugreport") that explains that you can not run bugreport in the regular ...
0
votes
1answer
454 views
Android eclipse Dump SQLite table row into text file
Is there a way to grab database table information in your android app and dump it into a text file? I know how to create files, but I can't seem to find the correct code to select DB information and ...
0
votes
0answers
113 views
Best practices to make a table dump in Rails [closed]
I need to make a dump from some postgresql tables and return it as a downloadable file .
This file will be processed by an Android application and will recreate the data on the mobile device DB. This ...
3
votes
2answers
1k views
Android Not Granting Dump Permission
For the purposes of monitoring Battery usage etc. I have code that executes a few dumpsys calls, reads and parses the output to extract data that I am interested in.
dumpsys battery, dumpsys ...
4
votes
1answer
967 views
41
votes
2answers
11k views
error openning HPROF file
I am getting the following exception when trying to open HPROF file (created by Debug.dumpHprofData) with Memory Analyzer:
java.io.IOException: Unknown HPROF Version (JAVA PROFILE 1.0.3)
at ...
1
vote
3answers
4k views
How to dump android meminfo into a file?
I'm taking a detailed look into the resources of my apps. Unfortunatly when I execute the adb shell dumpsys meminfo, it overflows my terminal. Anyone know how I can instead of viewing the dump in ...
7
votes
2answers
1k views
Is there a way to have an Android process produce a heap dump on an OutOfMemoryError?
The sun JVM supports a -XX:+HeapDumpOnOutOfMemoryError option to dump heap whenever a java process runs out of heap.
Is there a similar option on Android that will make an android app dump heap on an ...
1
vote
1answer
774 views
Java dump an object
I need to dump all the attributes of a Java object. I have found a few functions that do this but none of them handle self references and all of the functions I have found spiral into infinite ...
