如图所示,未看到检查链接。我在这个答案中做了一些步骤: https://stackoverflow.com/a/32173974/5118976 我在手机上运行应用程序但没有检查链接。为什么会出现这个问题?怎么解决?
答案 0 :(得分:2)
添加
compile 'com.facebook.stetho:stetho:1.3.1'
在gradle文件中。
并确认您已添加
Stetho.initializeWithDefaults(this);
在应用程序类
中答案 1 :(得分:1)
我在android中有同样的问题
我引用此行。https://github.com/facebook/stetho/issues/40
这是已知问题。
创建sqlite之后它无法正常工作你想要卸载应用程序并安装它会起作用。它对我有用。
答案 2 :(得分:1)
除了创建应用程序类外,请确保将其也添加到清单文件中。 :)
<application
android:name=".App" // application class
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
...
...
/>