I think I found a bug in the ClutchAndroid code that needs a serious look at!!
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.
What this implies is that if the live Clutch RPC is taken offline, it will take all the Android Apps with it..
Nas.