I want to store the updated score in mysql database. So, what i do for that? private void updateScore() { if (winner.equalsIgnoreCase(“You”)) { tally = 100 – computer.getId(); MainActivity.userScore += tally; if (MainActivity.userScore >= MainActivity.maxEnd) { MainActivity. stat++; MainActivity.totTurn++; MainActivity.userScore = 0; MainActivity.computerScore = 0; } } if (winner.equalsIgnoreCase(“computer”)) { tally = 100 – buddy.getId();Read more