My application is working well in my test device and also to most of the users (maybe), but I am getting a crash report in my play console account and I don't understand where the problem is. I am attaching a screenshot of the stack traces and the codes.
This is line no. 60, AdhynikYugDetails.java, as mentioned in stack traces:
tv_detailed_description.setText(R.string.jatiyatabadi_andolan_details);
There are many lines like this, but only this line is responsible for the crash: Stack traces
This is the full block:
else if (getIntent().getBooleanExtra("jatiyatabadi_andolan", AdhunikYug.jatiyatabadi_andolan)) {
tv_heading.setText(R.string.jatiyatabadi_andolan);
tv_detailed_description.setText(R.string.jatiyatabadi_andolan_details); //line no 60
AdhunikYug.jatiyatabadi_andolan = false;
}
Could there be a problem in the string? should I post it? It is a long Bengali string.