Commit 2ec0fbb8 authored by Varun Patil's avatar Varun Patil

Set indicators and logging to false for Picasso

parent 6f9cb99d
...@@ -317,9 +317,8 @@ public class MainActivity extends AppCompatActivity implements NavigationView.On ...@@ -317,9 +317,8 @@ public class MainActivity extends AppCompatActivity implements NavigationView.On
UnsafeOkHttpClient.getUnsafeOkHttpClient(getApplicationContext()) UnsafeOkHttpClient.getUnsafeOkHttpClient(getApplicationContext())
))); )));
Picasso built = builder.build(); Picasso built = builder.build();
// TODO Set these to false before launch built.setIndicatorsEnabled(false);
built.setIndicatorsEnabled(true); built.setLoggingEnabled(false);
built.setLoggingEnabled(true);
Picasso.setSingletonInstance(built); Picasso.setSingletonInstance(built);
} }
......
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