Android Question Firebase Database Byte field created automatically

Hi guys i learned firebase database implementation tutorial from @fredo , its working!! i like this tutorial, but just a little bit problem that i wanna ask

POST Button:
Sub Button2_Click 'POST
    Dim mapToSend As Map : mapToSend.Initialize
    mapToSend.Put("response", EditText1.Text)
   
    Starter.fdb.POST(EditText2.Text, mapToSend, "xyz POST-Test")
End Sub

when i clicked the button its appear a new field with the byte type, however i just wanna have a response field, how can i do that? please help.
fdb.PNG
 
Top