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

The (previously deprecated) Notification method setLatestEventInfo was completely removed in API level 23 (Android 6.0, Marshmallow). ProGuard says: Warning:com.octo.android.robospice.SpiceService: can't find referenced method 'void setLatestEventInfo(android.content.Context,java.lang.CharSequence,java.lang.CharSequence,android.app.PendingIntent)' in library class android.app.Notification

This lib can help https://github.com/stanfy/enroscar RS doesn't support RxJava, it could become an extension or an addition to the core module of RS.

philosophical topic

Hi, I'm using Robospice like the following: ``` getSpiceManager().getFromCacheAndLoadFromNetworkIfExpired(request, lastRequestCacheKey, DurationInMillis.ONE_SECOND, new RequestListener() { @Override public void onRequestFailure(final SpiceException spiceException) { } @Override public void onRequestSuccess(final MyList list) { ......

i trying to upload some files to the server using GoogleHttpClientSpiceRequest with MultipartEntityBuilder, but is impossible because the library doesn't support this part i trying to add on the data,...

hi i have next structure class A { @DatabaseField(foreign = true, autorefresh = true, autocrteate = true) private B subEntity; } class B { @ForeihnCollectionField(eager = true) private Collection listSubEntities;...

http://udinic.wordpress.com/2013/07/24/write-your-own-android-sync-adapter/ We could stub (or not) both the content provider and authentication manager : - http://developer.android.com/training/sync-adapters/creating-stub-provider.html - http://developer.android.com/training/sync-adapters/creating-authenticator.html This module would help syncing content with a remote server. This video...

philosophical topic

just implement an web service by call http://ipinfo.io/json CPU usage hit to User [60%] without other calculation. Any idea why CPU usage is quite large?

As: ``` java getSpiceManager().execute(request, response -> someWork(response), spiceException -> onError(spiceException )); ```

I'm using robospice on a project that already has an async execution infrastructure. For the moment, I don't want to refactor all my code, but just start using robospice for...

enhancement

Would it be possible to allow setting a listener for a cache key for the case that a task with it is started for example from a Service after the...