Skip to main content
1 vote
0 answers
2k views

I am using RoboSpiceManger for APIs, I am able to read/get the response headers for status code is 200 for POST requests using RestTemplate like this: ResponseEntity<?> responseEntity = (...
Arvindlal Jaiswal's user avatar
0 votes
1 answer
108 views

I have been using retrofit1 + robospice to make API requests. You can check sample here. In this framework, I used to make request like this getSpiceManager().execute(request, CACHE_KEY, ...
Dinesh Chitta's user avatar
-1 votes
2 answers
91 views

I need to get type of generic type. I've already tried following public abstract class RetrofitRequest<RESULT> extends SpiceRequest<Response<RESULT>> { public RetrofitRequest(){...
Lakshan Dissanayake's user avatar
-1 votes
3 answers
10k views

I have a login view in an android app that I would like to function synchronously. That is, I want the user to stay on the page until the login rest call completes. If it fails, the user can reenter ...
user6627139's user avatar
0 votes
1 answer
69 views

Is it any possibility to mock responses using Robospice in Android because I need to create demo application which will have all responses in json files in application? I was trying to use https://...
falsetto's user avatar
  • 789
0 votes
1 answer
64 views

I am new to android development, I tried understanding the Robospice library which is very much useful for network tasks, But I am trying to use the Robospice as a replacement for Async Task due to ...
Sai Sarath C P's user avatar
6 votes
1 answer
203 views

In our project we are using com.octo.android.robospice:robospice-retrofit:1.4.14 , Which require okhttp: 1.6.0 And getstream java client io.getstream.client:stream-repo-okhttp:1.2.2', Which require ...
Sanyasirao Mopada's user avatar
-1 votes
1 answer
84 views

I am using RoboSpice to making web-service calls as ,below. spiceManager.execute(request, lastRequestCacheKey, DurationInMillis.ONE_DAY, this); Bu each time , it makes network request ...
Don Chakkappan's user avatar
1 vote
2 answers
899 views

In my application I am using robospice. So in my BaseActivity a created spice manager: @Override protected void onStart() { super.onStart(); if(!spiceManager.isStarted()) { ...
Stepan's user avatar
  • 1,161
0 votes
0 answers
51 views

I would like to achieve managing custom retry policy in my application. By default it does 3 retries after requset failure, but I don't want to retry for HTTP 400 responce. How can I do this?
Grecha's user avatar
  • 119
0 votes
1 answer
71 views

After migrating my project from eclipse to android studio 2.2,I am getting this issue,any help to resolve this issue? E/dalvikvm: Could not find class 'com.octo.android.robospice.persistence....
kavie's user avatar
  • 2,244
2 votes
1 answer
65 views

I'm developing a new android down-loader and i want to use ROBOSPICE in my project but really i don't know how to setup it. I think there must be a jar file to attach to my project and start using its ...
Mohammad Fneish's user avatar
1 vote
0 answers
152 views

I used to do network calls using robospice + retrofit, but I recently I came to know we can do same using rxjava and retrofit Same example using rxjava and retrofit, http://randomdotnext.com/...
Sanyasirao Mopada's user avatar
1 vote
0 answers
56 views

I have found following code in this sample of Spring Android module : @Override protected void onRestoreInstanceState(Bundle savedInstanceState) { super.onRestoreInstanceState(savedInstanceState);...
Michael Andreev's user avatar
0 votes
2 answers
226 views

I use RoboSpice with OkHttpClient module (OkHttpSpiceService) for quite long time requests. For that purposes I need to increase timeouts of http client so I made and set them on 120 seconds. @...
Geo ZiDani's user avatar

15 30 50 per page
1
2 3 4 5
17