Questions tagged [stetho]

Stetho is a debug bridge for Android applications

Stetho is a sophisticated debug bridge for Android applications. When enabled, developers have access to the Chrome Developer Tools feature natively part of the Chrome desktop browser.

Developers can also choose to enable the optional dumpapp tool which offers a powerful command-line interface to application internals.

73 questions
2
votes
1 answer

why the DevTools stops showing network traffic

On Mac and for android app, used to use chrome://inspect and pick the emulator running that app. And in the devTools form (when app integrate with stetho) it used to show left pane for listing the network calls and right pane showing the details for…
lannyf
  • 9,865
  • 12
  • 70
  • 152
2
votes
1 answer

Android Stetho-Realm : FATAL EXCEPTION: StethoWorker-main-5

I am using Realm gradle plugin 5.11.0 and stetho realm 2.1.0 , but when I connect to chrome it crashed app and I am not able to inspect db. I am getting below exception E/AndroidRuntime: FATAL EXCEPTION: StethoWorker-main-5 Process:…
Sagar Jethva
  • 986
  • 12
  • 26
2
votes
1 answer

Extract Sqlite Database using Chrome DevTools (Stetho)

I am using Stetho as debug bridge for my Android apps. Through this I can "inspect" and open Chrome DevTools attached to my app. I can access my app's local database under Resources->Web SQL->"MyApplication.db". I was wondering: Is there a way,…
aLL
  • 1,596
  • 3
  • 17
  • 30
2
votes
0 answers

Is it possible to write custom stetho network protocol parser?

We use our own binary server protocol. Is it possible to write some stetho plugin to parse our binary protocol to human readable format in chrome inspector?
user2069363
  • 193
  • 1
  • 8
2
votes
1 answer

How to add, delete and edit data in Stetho?

I have an android app that stores data using Realm. I view the data using Stetho. But don't know how to edit the data directly from Stetho.
nani
  • 389
  • 9
  • 32
2
votes
1 answer

Stetho-Timber library issue with new Timber version 4.1.2

While I was trying to use stetho-timber Library in my Android application I faced this problem: Error:Module 'com.facebook.stetho:stetho-timber:1.3.1' depends on one or more Android Libraries but is a jar What's wrong?!
Mohsen Mirhoseini
  • 8,454
  • 5
  • 34
  • 59
2
votes
3 answers

How to view realm database tables in android using Stetho?

How to view database tables created using realm,for testing purpose.Is there any tool avilable to view the tables?.Anyone knows the answer please help.Thanks in advance.
Jinesh Francis
  • 3,377
  • 3
  • 22
  • 37
2
votes
1 answer

How to process outstanding UI requests on Android

I am processing UI instructions on a virtual machine (V8 actually) on Android in the main UI thread. This works fine. However, now I'm adding a JavaScript debugger into the mix (Stetho in my case). I can pause the UI thread when a breakpoint is hit,…
irbull
  • 2,490
  • 2
  • 20
  • 28
2
votes
1 answer

Android: View app private data - debugging

Is there any nice tool out there that helps with debugging by providing a way to browse through private files of an app? The only way I found so far is by rooting the device and using Device Monitor. I am assuming there must be library out there to…
Kasra
  • 3,045
  • 3
  • 17
  • 34
1
vote
0 answers

StethoInterceptor does not work after dagger hilt

we use StethoInterceptor lone time, but it seems does not work after hilt refactoring the device exists inchrome://inspec but the network tab is empty @Singleton @Provides fun provideRetrofit(okHttpClient: OkHttpClient): Retrofit =…
العبد
  • 359
  • 5
  • 15
1
vote
1 answer

android library module how to bring in stetho only in debug build

Having android library module, in debug build it would like to use the stetho, bot no in release build. I guess it could add dependency of debugCompile 'com.facebook.stetho:stetho:1.4.1' debugCompile 'com.uphyca:stetho_realm:2.0.0' or using…
lannyf
  • 9,865
  • 12
  • 70
  • 152
1
vote
0 answers

Browse database tabels in Flutter with Stetho or other program

Im trying to migrate from Android to Flutter programming. I want to know if there is any program that could give me access to the database tabels in Flutter? For Android I used a program called Stetho for browsing my database. I just installed it by…
Europa
  • 974
  • 12
  • 40
1
vote
0 answers

Stetho inspection - no data

I integrated Stetho in my app as stated on the official website. I can click on the inspect button for my running app and the chrome layout is loading fine. Unfortunately I can't see any data in the inspect mode. The "stetho sample" app also doesn't…
Tobster
  • 29
  • 1
  • 6
1
vote
1 answer

Stetho and chrome:inspect pending REST petitions

I'm using Stetho, Retrofit and OkHttp with Chrome Developer Tools for debug purposes, all seems to work OK, I see my local database content, I can inspect my UI, but if I do some REST petitions to my server with the Network Inspection enabled the…
1
vote
1 answer

Android - Stetho Showing Empty View Hierarchy

I initialized stetho with the following code public class MyApplication extends Application { public void onCreate() { super.onCreate(); Stetho.initializeWithDefaults(this); } } Now when I go to chrome://inspect it is…
Ahmad Ismail
  • 11,636
  • 6
  • 52
  • 87