MHttp icon indicating copy to clipboard operation
MHttp copied to clipboard

okhttp wrapper for Android Http.

Results 2 MHttp issues
Sort by recently updated
recently updated
newest added

List strings = new ArrayList(); strings.put("a"); strings.put("b"); Request.builder().url().post().addParameter("key", strings) 上送参数实际结果:key="[a,b]" 应该上送为:key=[a,b] 目前需要将strings转换为 org.json.JSONArray 才可成功。

After including your library, my app failed to compile. Here is the error ```` org.gradle.api.tasks.TaskExecutionException: Execution failed for task ':medapp:transformClassesWithDexForDebug'. at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.executeActions(ExecuteActionsTaskExecuter.java:84) at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.execute(ExecuteActionsTaskExecuter.java:55) at org.gradle.api.internal.tasks.execution.SkipUpToDateTaskExecuter.execute(SkipUpToDateTaskExecuter.java:62) at org.gradle.api.internal.tasks.execution.ValidatingTaskExecuter.execute(ValidatingTaskExecuter.java:58) at org.gradle.api.internal.tasks.execution.SkipEmptySourceFilesTaskExecuter.execute(SkipEmptySourceFilesTaskExecuter.java:88)...