robospice icon indicating copy to clipboard operation
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...

Results 87 robospice issues
Sort by recently updated
recently updated
newest added

Code like this: ``` java spiceManager.execute(request, new RequestListener() { @Override public void onRequestFailure(SpiceException spiceException) { ToastLess.$(getApplicationContext(), "加载数据失败"); spiceException.printStackTrace(); cancelLoadingDialog(); } @Override public void onRequestSuccess(RegisterJson registerJson) { } } ``` and...

My app should download files. Just after app uninstall/install (so aboslutely nothing should be in cache) and without calling spice request explicitly it seems that RoboSpice does something in background...

Hello. I tried using the Robospice Spring Android sample for gradle as is and I noticed that the build.gradle file is outdated. I spent a bit of time on it...

How should we deal if we need to work on data (writing), and the network is off. We can work on cached data (with ORM for example), and then republish...

I'm not dev crack, so I would need some guidance for implementing an new Robospice extension for especially for Loopback Android SDK. Basically Loopback enable making easy backend with nodeJs....

The retrofit extension uses version 1.6.1. Retrofit has been bumped to 1.9.0, with some nice new features and fixes.

next release

I am doing following: ``` spiceManager.cancel(Results.class, "CacheKey"); MyRequest request = new MyRequest(); request.setPriority(SpiceRequest.PRIORITY_HIGH); spiceManager.execute(request, "CacheKey", DurationInMillis.ALWAYS_EXPIRED, new MyListener()); ``` In such case MyListener gets onFailure with cancelled description. As I...

enhancement
question

This error pops into Logcat with Robospice 1.4.14 (commit 5f66030) on Android 5.0 (Nexus 10 and Nexus 7) using SpiceArrayAdapter from com.octo.android.robospice.spicelist.simple and the GsonSpringAndroidSpiceService. The stacktrace and exact error...

enhancement
next release

Is there any specific reason to keep commons io dependency at 1.3.2 ? Current version is 2.4 http://commons.apache.org/proper/commons-io/upgradeto2_4.html Thanks

question