You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The "doInBackground" method in the ClutchAPIClient -> AsyncTask, since my RPC port is having an issue for whatever reason, the method throws an exception which then causes the return value to be NULL.
The right return value would be something like this:
return new StatusCodeAndResponse(500,null);
Since the code within "onPostExecute" does not check for a NULL resp, it causes the whole Android APP to crash.
If the live Clutch RPC is taken offline, it will probably take all the Android Apps with it..
The text was updated successfully, but these errors were encountered:
We've got the same problem right now and we didn't look into the RPC side, but yes the library is not clear at all on what is going on. It should at least gracefully fall down without crashing the app.
The "doInBackground" method in the ClutchAPIClient -> AsyncTask, since my RPC port is having an issue for whatever reason, the method throws an exception which then causes the return value to be NULL.
The right return value would be something like this:
Since the code within "onPostExecute" does not check for a NULL resp, it causes the whole Android APP to crash.
If the live Clutch RPC is taken offline, it will probably take all the Android Apps with it..
The text was updated successfully, but these errors were encountered: