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
62
votes
5 answers

Chrome DevTools broken - Stetho unusable

Stetho and Google Chrome DevTools have become unusable after a macOS update (I doubt that macOS update is the origin of this bug, but I prefer to mention it). Here is the appearance of DevTools after the open of "inspect mode" on a device (provided…
61
votes
4 answers

Include Stetho only in the debug build variant

I know that I can use debugCompile to only pull in a dependency for the debug build. Is there a good, streamlined way to do the code initialization that is required as well? Without the dependencies the other variants will fail to compile.
theblang
  • 10,215
  • 9
  • 69
  • 120
34
votes
7 answers

Browse SQLite database from Android Studio

I would like to know is there any SQLite plugin for Android Studio which will allow user to browse the created database?
Mohamad Arafat
  • 573
  • 1
  • 5
  • 24
11
votes
2 answers

query in stetho not working when pressing enter key

I have been using android debug mode and tried to query data through Stetho in 'Resources' section. When I typed query and press enter key, it does not show me the result I want whereas it adds another empty line underneath the query I…
KingJinho
  • 683
  • 1
  • 6
  • 23
10
votes
1 answer

Unable to resize column in chrome dev tools Resources

So I have an android project in which I am using realm. The issue being that my design has a lot of columns listed in one particular table. Sadly I can't seem to see all of them and I can't resize it is there a horizontal scroll I can use I'm not…
Gideon Sassoon
  • 544
  • 1
  • 9
  • 29
9
votes
1 answer

Stetho: Don't see Network calls in console

Everything with Stetho works great in my sample app I tested after going through this YouTube tutorial (SQLite, SharedPreferences show) except for seeing the Network Calls which I'd love to get working. I'm making numerous API calls when the app is…
AdamHurwitz
  • 9,758
  • 10
  • 72
  • 134
8
votes
1 answer

Android stetho Google Developer tools resources truncated

Using Stetho and Stetho Realm. Stetho.initialize( Stetho.newInitializerBuilder(this) .enableDumpapp(Stetho.defaultDumperPluginsProvider(this)) …
8
votes
3 answers

How to use Stetho with Volley?

Created a volley singleton class for my requests.This is my singleton class public class VolleySingleton { private static VolleySingleton instance; private RequestQueue reQueue; private VolleySingleton(Context context) { …
williamj949
  • 11,166
  • 8
  • 37
  • 51
7
votes
0 answers

Stetho showing two columns with same name

Hello I am using Stetho debugging platform for my application. I have added Stetho in my gradle as follows dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) testCompile 'junit:junit:4.12' compile…
SSV
  • 311
  • 2
  • 6
6
votes
6 answers

Android Studio 2.1.1: "no usb devices or running emulators detected"

Suddenly my Android Studio stopped detecting all my devices, none of them is working. It happen from one execution to another. I've changed a few lines of code (1 min maybe?), hit run (instant run) and then I missed all my devices. I'm using a Mac…
Alberto Garrido
  • 485
  • 2
  • 6
  • 15
6
votes
1 answer

I am seeing "truncated" inside Web SQL in Chrome DevTools when using Stetho

I am using Stheto to inspect the database in my Android app, but I am seeing "truncated" in all my columns when there are a lot of objects in the table. How can I see them all?
Sree
  • 2,727
  • 3
  • 29
  • 47
5
votes
2 answers

chrome inspect dev tools is not showing well (stetho for android)

I've been using chrome dev tools to see the android data base and preferences, I'm using stetho library, I have not gotten any issue until today, when I open the de tools it looks messy, I don't know how to fix it, any idea? here a picture to show…
V1t0r14n0
  • 111
  • 5
5
votes
1 answer

J2V8 and Stetho

I have an Android app using J2V8 and want to use Stetho to create a debug bridge I can use in Chrome dev tools. Is there any documentation on how to connect Stetho to the V8 runtime I'm using ?
Avi Brenner
  • 151
  • 7
5
votes
2 answers

How to debug J2V8 in Android with chrome developer tools?

A similar question has been asked before, but had no traction. Clearly, it is possible but it is by no means clear how to do it in our own non-tabris Android app. The best documentation we have on the matter is this commit, but I tried…
Brad Pitcher
  • 1,693
  • 17
  • 21
5
votes
1 answer

default.realm file is not display in the chrome browser

I follow : This is from Facebook documentation. Debugging with Stetho on Android. I run react-native run-android via terminal. Then, Inspect with Chrome Developer Tools and then Developer Tools After i inspect, Resources/Web Sql/ display…
Satan Pandeya
  • 3,747
  • 4
  • 27
  • 53
1
2 3 4 5