Tagged Questions
155
votes
17answers
52k views
How do I obtain crash-data from my Android application?
How can I get crash data (stack traces at least) from my Android application? At least when working on my own device being retrieved by cable, but ideally from any instance of my application running ...
7
votes
1answer
320 views
Got a stacktrace from Android Market that mentions a competitor's app
Does anyone know what this could possibly mean? Apparently someone else's app caused mine to crash? And it happens to be an app that directly competes with mine:
java.lang.RuntimeException: Unable ...
5
votes
1answer
805 views
IllegalStateException: Can not perform this action after onSaveInstanceState - How to prevent?
I'm getting user reports from my app in the market, delivering the following exception:
java.lang.IllegalStateException: Can not perform this action after onSaveInstanceState
at ...
4
votes
2answers
322 views
Best way to obtain stacktrace on Android NDK library crash
In my android app in native library I add signal handler for SIGSEGV, SIGILL etc. And it works, but I don't know how I could obtain stacktrace.
I've tried Unwind* functions but they stops on signal ...
3
votes
5answers
674 views
e.printStackTrace(); in string
There are e.printStackTrace() method to print exceptional error, so I would like to take entire exception in String and show it by Toast.makeText()
How can i do this?
If there are more alternate idea, ...
3
votes
1answer
266 views
View call stack of built-in Android app via Eclipse?
I am trying view the call stack of the Android bluetooth settings/setup app.
Android 3.0 is able to pair with a bluetooth keyboard however the SDK does not expose this functionality. From what I ...
3
votes
2answers
508 views
Logcat standalone client
I have developed android application. Now it is time to give it to the beta testers.
Is there the standalone application witch will collect LogCat output? I do not want to force testers to install ...
2
votes
0answers
21 views
Mysterious stacktrace in Android developer console (bitmap size exceeds 32bits)
I'm getting the following stacktrace in the developer console. Some report say "the application won't start" or "crash at startup".
I don't know what to do, it doesn't mention any on my app's class! ...
2
votes
1answer
53 views
Stacktrace for C on Android
I have C code in my Android app and would like to catch crashes and print them to a log file. I saw this post, and tried, but I can't find the execinfo lib.
I'm working with Ubuntu 11.10 and using ...
2
votes
2answers
294 views
how can I understand Android crash errors and rectify them. (edited - Solved!)
This is an example of one of the stack traces, how do I fix my application from this? are there any other tools in google marketplace that help me with this?
java.lang.IllegalStateException: ...
2
votes
5answers
240 views
How to printStackTrace() from within a method
Printing a stack trace from within a catch is simple:
catch (IOException e) {
e.printStackTrace();
}
But how do I do this anywhere within a method, without having an exception object?
2
votes
2answers
473 views
Android: Generic Null Pointer Exceptions
I have been programming for Android with decent success, but one thing I have noticed is that when I get NullPointerExceptions the stack trace is worthless. They are always of this format:
Thread ...
2
votes
1answer
141 views
Stack trace bug aggregation software
I develop mobile applications for a variety of platforms, notably iPhone and Android.
Each of these applications has a way to "phone home" with fatal crash stack traces. Up to now, we've been ...
1
vote
2answers
51 views
Interpretation of Android Stack Trace
I received an error report with the following stack trace for an app I have in the Android Market:
java.lang.RuntimeException: Unable to start service com.k0gappsw.skibuddy.SBService@4051f4d0 with ...
1
vote
1answer
34 views
Android: How to read the entire stacktrace from LogCat (including the ..X more errors)?
I have an error on my Android Application and one of the really annoying things that LogCat does is write
exception Caused at android.
at android...
at android...
at android...
...
1
vote
1answer
62 views
Weird (invalid?) stacktrace in android?
This is probably more about curiosity, not the wish to fix a problem, because it occurred seemingly randomly and only once. However, perhaps it may shed some light on some obscure aspects of java or ...
1
vote
2answers
152 views
Android Developer Console Stacktrace
I have an App available in the Android Market.
From time to time i get error reports in the Developer Console. For about 6 month there have been no more stack-traces visible. At first I though no more ...
1
vote
3answers
97 views
How do I know what the exception is in Eclipse, Android SDK?
I'm a total newbie, trying to create a simple app for android.
The biggest annoyance so far is that I just cannot see what the heck happened if there is an exception. In Visual Studio if an exception ...
1
vote
1answer
483 views
How to collect native stacktrace without a scary READ_LOGS permission up front?
I have an application which is mostly native code written in C: Simon Tatham's Puzzles. When I catch a crash (with a signal handler), a Java backtrace will only tell me the vague area of the problem:
...
1
vote
1answer
228 views
Need help reading the stack traces
I'm getting these stack traces when running my app which crash. I get that it has to do something with "ANR keyDispatchingTimedOut". I'm new in Android development and I need some helping reading the ...
1
vote
2answers
321 views
Android: having stack trace error after using sharedprefs for login session
First I wanted the user to login and once login it wont go back to login screen until logout. So i added sharedPrefs. I was able to play around login>mainActivity then exit the app and open the app it ...
1
vote
3answers
544 views
how to view the error stack trace in android?
Can someone tell me clearly from where i can view the android error stack trace? i tried searching , but never found a clear-cut answer
Thanks
1
vote
3answers
1k views
How to get longer stacktrace (tombstone) from android?
As I have noticed, logcat returns always 34 lines of crashlog, like this:
4cf7c700 401c0000
4cf7c704 48463ff0
4cf7c708 44d11f7c
4cf7c70c afd0cd89
4cf7c710 00000000
4cf7c714 82ab29dc ...
1
vote
1answer
883 views
Help reading ANR stack traces in Android
I have been battling an ANR happening in one of my services for a while now. It is very hard to reproduce and the UI seems to have full functionality right before it happens 100% of the time there is ...
1
vote
1answer
397 views
How do you understand the cause of exception having stacktrace?
We have written an Android application which sends stack traces to our server, if any occur. Sometimes we get weird stack traces that seem not to be an exception from our application. For example:
...
0
votes
2answers
67 views
How to find this stack trace?
My program keeps crashing, but the logcat does not show any exceptions. I just get the following message, plus a lot of stats about CPU usage. Clearly I'm using too much of the CPU, but I don't know ...
0
votes
0answers
76 views
Application force closes constantly after an update
I recently pushed an update for an app, and now I'm getting a lot of crash reports from users about it crashing before even opening the application. I have the stack trace, but I don't recognize any ...
0
votes
3answers
79 views
How to prevent Android SQLite from dumping stack trace to logcat?
On Android 2.3.3 I'm doing a bulk import into one of my SQLite tables, using the API method:
SQLiteDatabase.insert(String table, String nullColumnHack, ContentValues values)
It works fine, but if ...
0
votes
1answer
106 views
Android IllegalArgumentException
I keep getting an IllegalArgumentException when the following method is ran:
public int randomize(ArrayList<Integer> list){
Random rdm = new Random();
int size = list.size();
int ...
0
votes
0answers
77 views
LG670 SQLite database error
UPDATE: I found where it is crashing. Its actually something to do with the copying itself. Im using a byte[] array and running a loop to write each portion of the array. Is there a better way of ...
0
votes
2answers
80 views
Android - ProGuard modification causes the app to crash
My app works fine when it's unsigned (debugging, etc..), also when exporting without ProGuard.
But when I export it with ProGuard, When a piece of code containing native methods that I import is ...
0
votes
3answers
251 views
Java / Android - How to print out a full stack trace?
In Android (Java) how do I print out a full stack trace? If my application crashes from nullPointerException or something, it prints out a (almost) full stack trace like so:
java.io.IOException: ...
0
votes
1answer
126 views
Android Error Bitmap Exceeds VM budget
I written a simple application that loads a number of wallpapers(20) total from scrollview and allows the user to set them as his/her background. It installs and works fine on my device, but users ...
0
votes
2answers
77 views
Solving errors with a stacktrace
I got an error that its stacktrace doesn't reveal where in my classes (& line number) the error lies.
Is there another way I can locate the code that causes this error?
I understand the error ...
0
votes
1answer
100 views
Can't find error from ACRA report
I started using ACRA for my Android projects, but there's a repeated error in the document that I cannot reproduce nor find where does it come from, this is the stackTrace:
...
0
votes
2answers
95 views
Android SQLite Problem
I am just trying to add data to the database and retrieve it.
This is how i create the database table:
private static final String DATABASE_CREATE =
"create table titles (_id integer ...
0
votes
4answers
2k views
Finding Stack Trace in Eclipse with Android
Not used to using Eclipse for java, mainly used jEdit but with the Android dev along comes Eclipse. I've switched to the debug window and pressed the debug button which starts my app, It crashes ...
0
votes
2answers
351 views
Examine logs from the past with logcat?
I'd like to examine stack traces from the last hours. I haven't found a proper logcat command. Does Android "forget" those logs?
First story:
When I find an unhandled exception in my co-workers ...