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 showing empty View Hierarchy
However, I can check database in stetho debugger.
So, everything else is working fine.
What am I missing here?