How to Handle Dynamic Object Repository in Mobile

Hi Any one Help me to handle Dynamic Object Repository in Mobile.

Example : Object Name of the Cart is Dynamic and also i want to get the no items in the Cart.

Please help me on that since i am new to Katalon studio and automation testing

you can create manual xpath with other attributes…like ID, Class name,
ex - //[@id=‘id of cart element’]
//
[@classname = 'class of cart element]

if id is also dynamic like id = cart873, cart567, cart232…
then use contains keyword in xpath like -

//*[contains[@id, ‘cart’]