I am getting this Out of memory issue from Volley. Currently, my request object creation is like this
if (reQuestQue == null) {
reQuestQue = Volley.newRequestQueue(mContext);
}
reQuestQue.add(mGsonRequest);`
I am getting this exception:
Fatal Exception: java.lang.OutOfMemoryError: pthread_create (1040KB stack) failed:
Try again
at java.lang.Thread.nativeCreate(Thread.java)
at java.lang.Thread.start(Thread.java:1063)
at com.android.volley.RequestQueue.start(RequestQueue.java:135)
at com.android.volley.toolbox.Volley.newRequestQueue(Volley.java:91)
at com.android.volley.toolbox.Volley.newRequestQueue(Volley.java:67)
at com.android.volley.toolbox.Volley.newRequestQueue(Volley.java:102)`