正如您在图片中看到的,没有看到检查链接。我在这个答案中做了步骤: https ://stackoverflow.com/a/32173974/5118976 在我的手机上运行应用程序但没有检查链接之后。为什么会出现这个问题?怎么解决?
问问题
1495 次
3 回答
3
添加
compile 'com.facebook.stetho:stetho:1.3.1'
在 gradle 文件中。
并确认您已添加
Stetho.initializeWithDefaults(this);
在应用类
于 2016-07-20T08:31:27.440 回答
1
我在android中遇到了同样的问题
我参考这条线。https://github.com/facebook/stetho/issues/40
这是知道的问题。
创建sqlite后它不起作用你想卸载应用程序并安装它会起作用。它对我有用。
于 2017-11-30T10:56:17.977 回答
1
除了创建应用程序类之外,请确保它也被添加到 Manifest 文件中。:)
<application
android:name=".App" // application class
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
...
...
/>
于 2018-07-04T19:32:10.527 回答