I am getting this time
String myTime = \"14:10\";
Now I want to add like 10 mins to this time, so that it would be 14:20
14:20
I would recommend storing the time as integers and regulate it through the division and modulo operators, once that is done convert the integers into the string format you require.