I want to move Firebase realtime database child value into another child value in an android studio. ( points: 25 into totalpoints: from the same user uid.
{
"Users" : {
"8xNAsCfc3Afta2lPHHsMWHEOw8C2" : {
"points" : 25,
"users" : "umar"
}
},
"wFinal" : {
"8xNAsCfc3Afta2lPHHsMWHEOw8C2" : {
"totalpoints" : 0
}
}
}
I want this
{
"Users" : {
"8xNAsCfc3Afta2lPHHsMWHEOw8C2" : {
"points" : 0,
"users" : "umar"
}
},
"wFinal" : {
"8xNAsCfc3Afta2lPHHsMWHEOw8C2" : {
"totalpoints" : 25
}
}
}