Hi I have used below method in our clover project to get Item list with category. inventoryConnector().itemsWithCategories Now it is deprecated and throwing error: android.os.DeadObjectException: Transaction failed on small parcel; remote process probably died. Kindly share how we can overcome this situation. @Deprecated public List<Item> getItemsWithCategories() throws ClientException, ServiceException, BindingException, RemoteException { return execute(new ServiceCallable<IInventoryService, List<Item>>() { public List<Item> call(IInventoryService service, ResultStatus status) throws RemoteException { return service.getItemsWithCategories(status); } }); }