Deleting a relation from the BackendlessUser Table (Android)

Dear Sir,
I have a relation(1:N) called Cart from the BackendlessUser table to the Item_List table. I can seem to set the relation but while deleting a particular relation my app crashes. Here’s the code snippet I use
BackendlessUser vv=Backendless.UserService.CurrentUser();
List<Item_List> abc=(List)vv.getProperty(“Cart”);
abc.remove(oitems);
oitems is the object from the Item_List that I want removed from Cart.

Hi Rick,

I cannot see how that code would lead to an app crash (unless “uv” or “abc” are null).

Mark