我在尝试使用 Stetho 时遇到问题,我尝试搜索并按照其他人提供的步骤进行操作,但似乎没有一个人突出我的问题。以下是我使用 Stetho 所需的文件中的内容。
我的问题是它无法识别“初始化”方法我通过其他用户的建议尝试了其他实现该方法的方法,但是我仍然遇到同样的错误
build.gradle(模块:app)
dependencies {
compile 'com.facebook.stetho:stetho:1.5.0'
compile 'com.facebook.stetho:stetho-okhttp3:1.5.0'
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:24.2.1'
compile 'com.android.support:support-v4:24.2.1'
testCompile 'junit:junit:4.12'
}
在我的 Stetho 应用课程中
import android.app.Application;
public class Stetho extends Application {
@Override
public void onCreate() {
super.onCreate();
Stetho.initializeWithDefaults(this);
}
}
在我的清单中声明
<application
android:name=".Stetho"
android:allowBackup="true"
我认为问题是,我实际上并没有正确实现该库,但我不确定。