java - Android retrofit expected BEING_OBJECT but was string at line 1 column 1
one text
Solution:
You are printing "connesso" in your server response. Remove this in your save.php file.
Update your query in save.php with this:
$query="INSERT INTO `Utenti`(`username`, `password`) VALUES('".$username."','".$password')."');";
Source