Commit 2ce39c9f authored by Sajal Narang's avatar Sajal Narang

Remove debug logs

parent b8051e2d
......@@ -152,9 +152,7 @@ public class MainActivity extends AppCompatActivity implements NavigationView.On
retrofitInterface.getLatestVersion().enqueue(new Callback<JsonObject>() {
@Override
public void onResponse(Call<JsonObject> call, Response<JsonObject> response) {
System.out.println("Check" + response.code() + response.body());
if (response.isSuccessful()) {
System.out.println("Check 2" + response.body());
if (response.body().get("version").getAsInt() > versionCode) {
showUpdateSnackBar();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment