robospice
robospice copied to clipboard
Repo of the Open Source Android library : RoboSpice. RoboSpice is a modular android library that makes writing asynchronous long running tasks easy. It is specialized in network requests, supports cac...
How do the new background service limitations in the newest Android O Developer Preview affect RoboSpice? Even on earlier releases, when the Activity goes into background and a request hasn't...
I've got this new error for users using android 8.1.0 : "android.app.RemoteServiceException: Bad notification for startForeground: java.lang.RuntimeException: invalid channel for service notification: Notification(channel=null..." I can reproduce the error on emulator...
How can I use xmlrpc request. I have my own object which handle everything very well and returns data response. I want to keep using my object to do network...
**Here is the error message:** com.android.build.api.transform.TransformException: java.util.zip.ZipException: duplicate entry: org/apache/commons/io/CopyUtils.class **If I try to include it in the following way. It gives some bugs(some request doesn't gives the response )**...
How would RoboSpice interact within the new MVVM Architecture Components introduced at Google IO 2017? Considering we'd have a data layer consisting of repositories which fetch data from a web...
Hello, I am looking for a way to download a file from server, I see two options, one of them is to use: `BinaryRequest` but it works only if you...
Add a robospice-retrofit2 module to be able to use Retrofit-2.0.0 and up with RoboSpice
`BigBinaryRequest` doesn't allow customizing request headers (passing auth headers). Tried overriding `loadDataFromNetwork` request to create `HttpURLConnection` instance and setting headers but seems like `loadDataFromNetwork` is a final method at `BinaryRequest`...
I have requests with type Response. I need it, because the server can return object json type User (if is OK), but also it can return json object Error (if...
This method was working fine in version 1.4.11. But to fix one issue https://github.com/stephanenicolas/robospice/issues/91 We upgraded robospice version to 1.4.13 After that removeDataFromCache(Class clazzm, Object cacheKey) is not working. Is...