We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 534a057 commit f391839Copy full SHA for f391839
library/src/main/java/com/loopj/android/http/RequestParams.java
@@ -30,6 +30,7 @@
30
import java.io.FileNotFoundException;
31
import java.io.IOException;
32
import java.io.InputStream;
33
+import java.io.Serializable;
34
import java.io.UnsupportedEncodingException;
35
import java.util.ArrayList;
36
import java.util.Collections;
@@ -87,7 +88,7 @@
87
88
* client.post("http://myendpoint.com", params, responseHandler);
89
* </pre>
90
*/
-public class RequestParams {
91
+public class RequestParams implements Serializable {
92
93
public final static String APPLICATION_OCTET_STREAM =
94
"application/octet-stream";
0 commit comments