Created
October 25, 2016 11:17
-
-
Save mplacona/1d74f8814ba6482493ed50bd9059df75 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mPicasso = new Picasso.Builder(getApplicationContext()) | |
.downloader(new OkHttp3Downloader(okClient)) | |
.loggingEnabled(true) | |
.build(); | |
if (BuildConfig.DEBUG) { | |
Stetho.initialize( | |
Stetho.newInitializerBuilder(this) | |
.enableDumpapp(Stetho.defaultDumperPluginsProvider(this)) | |
.enableWebKitInspector(RealmInspectorModulesProvider.builder(this).build()) | |
.build()); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment