All Questions
23 questions
6
votes
0
answers
428
views
Debugging MAUI issues from android playstore ANR details stacks
I have a MAUI application available on the playstore.
Google PlayStore has the "Crashes and ANRs" reports.
Because MAUI isn't exactly Java, I'm having a difficult time finding the actual ...
1
vote
1
answer
2k
views
I have a problem in react native when i try to navigate to a material top tap navigation that contains a flatlist component
I have a initial screen in my app that contains a button to navigate to my home screen with the method navigation.navigate('HomeDrawerNavigator' as never), the HomeDrawerNavigator initial screen is my ...
2
votes
2
answers
2k
views
Trouble with undefined reference to Callstack library
I try to build a cpp file as below to an executable on the Android platform. Therefore, by calling dumping_callstack(), I can get call stack of my executable in run time. But there are some errors。
...
4
votes
2
answers
976
views
How to find crash source using Android Developer Console crash report?
Since I published a new version of my app in the Google Play Store I receive crash reports in the Android Developer Console.
I have uploaded the ProGuard mappings.txt right after publishing the new ...
-1
votes
1
answer
159
views
stack trace with multiple caller methods
I get this kind of stack trace when my app crashes in the field, and I just can't get my head around the actual meaning of it:
java.lang.NullPointerException: Attempt to invoke interface method 'java....
12
votes
2
answers
15k
views
Android app crash with ResourceNotFoundException
I recently checked for my GP crash logs and I am getting this callstack very frequently. Could you please help me.
A few things:
The failed to add asset path sometimes shows /data/app/com.xxx.xxx....
-3
votes
2
answers
2k
views
3 way Boolean value with Java
I have 3 conditions based on my Boolean values.
Condition 1: When the value is false, the user should get a blank form
with a submit button
Condition 2: When the user submits the form, the Boolean ...
2
votes
1
answer
67
views
How can I see the strackrace that includes the frames generated by my methods?
In Android Studio,I run the app in Debug mode which loads it into the emulator. Then I go through the app clicking through the UI so my user defined methods are called as to generate a stack trace. I ...
0
votes
1
answer
54
views
Remove just last instance of an activity from stack
I have an application with 2 activities A and B, A is the main activity and B is called by A but also can be called from B itself.
So my stack will look like
A,B0,B1,B2,B3
In certain cases I want ...
-2
votes
2
answers
84
views
Why Android is crashing on its own? What have I done wrongly?
I am writing an Android app for little kids to learn maths and I am working on the part where users can get prizes when he/she answers all the questions correctly. And I am dynamically adding some ...
0
votes
3
answers
100
views
Why is this call stack so weird?
Today I was debugging my android app and it crashes. Here is the call stack:
android.content.res.Resources$NotFoundException: String resource ID #0x8822
at android.content.res.Resources....
0
votes
4
answers
1k
views
Android executes task sequentially or not?
I am getting a very interesting behavior by Android Studio in my project. The calls to different activities are not executing sequentially!
I am building a project where in the calls are like this:
...
1
vote
0
answers
86
views
Getting a list of APIs in a binary that are called by an android application
I have an android application that uses APIs from a binary file (.so). While I am running the app, I would like to get a list of all the APIs in the .so that is called by the application.
My initial ...
112
votes
3
answers
53k
views
Android Studio - Where can I see callstack while debugging an android app?
While on a break point, how do I see the call stack to find the callee method/function?
0
votes
1
answer
1k
views
Android dmtracedump format
I am looking at output of command:
dmtracedump -o com.example.android.notepad.trace
I understand that using dots they specify the hierarchy of calls. There is also specified actions "ent" and "xit" ...
0
votes
2
answers
2k
views
Android : Stack overflow error - Recursive too deeply
I am creating a little game where you need to move troops on a map. To detect if a movement can be done I must verify if there is a way between 2 squares.
So, recursively I start from one square and ...
3
votes
4
answers
7k
views
How to use CallStack (in CallStack.tpp) in a executable on android platform?
A question from https://stackoverflow.com/a/11467040/1442443
my final target is to dump user space stack.
I try to build a cpp file as below to a executable on android platform. Therefore, by ...
1
vote
1
answer
3k
views
track the incoming call action
I know this is a asked question. By using broadcast receiver and using
android.intent.action.PHONE_STATE
in receiver tag, you can know the actions of a phone. But how can I identify whether it is an ...
2
votes
2
answers
5k
views
How can I visualize Android call stack using Eclipse?
Is there anyway I could visualize the call stack of an Android app? All I can find in Eclipse are the running threads:
What I want, is to see how my subroutines are called in order to debug an issue ...
1
vote
0
answers
448
views
how to dump a call stack in Android user mode?
I am debugging an Android user mode driver. Sometimes, I would like to figure out the function callstack. I saw there are tools doing this in either java app or kernel. Is there a way to dump stack in ...
0
votes
1
answer
875
views
Can you make a voice call on android without user interaction
I am trying to make an application that generate phone calls to create test data.
So I want the app to make a phone call to the same test phone number X times without the user to hit the call button.
...
0
votes
2
answers
2k
views
Any tool to trace the sequence of Android code flow?
Is there any tool where we can find the flow of the android code in huge code for particular sequence, to trace the particular sequence. This is so that we could improvise on that particular sequence. ...
2
votes
1
answer
898
views
Ways to optimize Android App code based on function call stack?
I've been told that Android OS stores all function calls in a stack. This can lead to many problems and cause the 'hiccups' during runtime, even if a program is functionalized properly, correct?
So ...