So, I have my application class extending Application like this:
class MyApplication extends Application {
@Override
public void onCreate() {
super.onCreate();
StartupTracer.get().onApplicationCreate();
GodEye.instance().installAll(this, new CrashFileProvider(this));
GodEyeMonitor.work(this);
}
}
And looking in the web app shows nothing:
Maybe I should initialize things in other places? How should it be?
Also, seeing the stacktrace it shows. Without proguard it seems the issue does not appear. So I guess its heavily tied to it
Caused by: java.lang.IllegalStateException: can not call install leak
at cn.hikyson.godeye.core.internal.modules.leakdetector.c.a(SourceFile:44)
at cn.hikyson.godeye.core.internal.modules.leakdetector.c.a(SourceFile:37)
at cn.hikyson.godeye.core.a.a(SourceFile:68)
at cn.hikyson.godeye.core.a.a(SourceFile:60)
at com.this.is.my.package.MainApplication.onCreate(SourceFile:XXX)
So, I have my application class extending Application like this:
And looking in the web app shows nothing:
Maybe I should initialize things in other places? How should it be?
Also, seeing the stacktrace it shows. Without proguard it seems the issue does not appear. So I guess its heavily tied to it