Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.72 KB | None | 0 0
  1.     private void enableStethos() {
  2.  
  3.            /* Stetho initialization - allows for debugging features in Chrome browser
  4.            See http://facebook.github.io/stetho/ for details
  5.            1) Open chrome://inspect/ in a Chrome browse
  6.            2) select 'inspect' on your app under the specific device/emulator
  7.            3) select resources tab
  8.            4) browse database tables under Web SQL
  9.          */
  10.         Stetho.initialize(Stetho.newInitializerBuilder(this)
  11.                 .enableDumpapp(
  12.                         Stetho.defaultDumperPluginsProvider(this))
  13.                 .enableWebKitInspector(
  14.                         Stetho.defaultInspectorModulesProvider(this))
  15.                 .build());
  16.  
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement