Giter VIP home page Giter VIP logo

Comments (16)

space2 avatar space2 commented on July 29, 2024

Fixed in bc406b2

Yes, it still worked. This was due to some cosmetic change: when running the application on a mac, it will always show an icon in the dock, and the default icon is boring. However the APIs which can be used to change that icon are not supported in linux (or windows).

I will create a new precompiled jar when I will have some more commits to put in, meanwhile you can just ignore the stacktrace (or compile the code from source code ;-)

from chkbugreport.

wcypierre avatar wcypierre commented on July 29, 2024

oh okay. Got it :)

from chkbugreport.

felipeaugusto1 avatar felipeaugusto1 commented on July 29, 2024

I received this error:

Changed doc icon on mac
Failed to register extension 'com.sonyericsson.chkbugreport.AdbExtension' due to: java.lang.NoClassDefFoundError: com/android/ddmlib/IShellOutputReceiver
ChkBugReport 0.4 (rev 185) (C) 2012 Sony Ericsson Mobile Communications AB
Loading input...
java.io.IOException: Does not look like a bugreport file!
at com.sonyericsson.chkbugreport.BugReportModule.load(BugReportModule.java:248)
at com.sonyericsson.chkbugreport.BugReportModule.load(BugReportModule.java:129)
at com.sonyericsson.chkbugreport.Main.loadFrom(Main.java:378)
at com.sonyericsson.chkbugreport.Main.loadReportFrom(Main.java:353)
at com.sonyericsson.chkbugreport.Main.loadFile(Main.java:261)
at com.sonyericsson.chkbugreport.Main.run(Main.java:248)
at com.sonyericsson.chkbugreport.Main.main(Main.java:593)

from chkbugreport.

space2 avatar space2 commented on July 29, 2024

Could you attach the bugreport file?

from chkbugreport.

felipeaugusto1 avatar felipeaugusto1 commented on July 29, 2024

Sure. Here it is: https://dl.dropboxusercontent.com/u/60579688/bugreport.txt

from chkbugreport.

space2 avatar space2 commented on July 29, 2024

Hi!

Sorry for the late reply, it was a busy vacation.

The problem is that the bugreport file contains some extra lines at the beginning ("try again in 1second" repeated a couple if times). AFAIR, chkbugreport can ignore up to 3 garbage lines at the beginning, but in this case there are about 10. To fix it, just delete the these lines from the beginning of the file.

from chkbugreport.

felipeaugusto1 avatar felipeaugusto1 commented on July 29, 2024

WOW! Nice. It's working now. Thanks

from chkbugreport.

jithu232 avatar jithu232 commented on July 29, 2024

Failed to register extension 'com.sonyericsson.chkbugreport.AdbExtension' due to: java.lang.NoClassDefFoundError: com/android/ddmlib/IShellOutputReceiver
ChkBugReport 0.4 (rev 185) (C) 2012 Sony Ericsson Mobile Communications AB
Loading input...
java.io.IOException: Does not look like a bugreport file!
at com.sonyericsson.chkbugreport.BugReportModule.load(BugReportModule.java:248)
at com.sonyericsson.chkbugreport.BugReportModule.load(BugReportModule.java:129)
at com.sonyericsson.chkbugreport.Main.loadFrom(Main.java:378)
at com.sonyericsson.chkbugreport.Main.loadReportFrom(Main.java:353)
at com.sonyericsson.chkbugreport.Main.loadFile(Main.java:261)
at com.sonyericsson.chkbugreport.Main.run(Main.java:248)
at com.sonyericsson.chkbugreport.Main.main(Main.java:593)

from chkbugreport.

space2 avatar space2 commented on July 29, 2024

This happens usually if there are some extra lines at the beginning of the bugreport. ChkBugReport can ignore up to 3 lines, but if there are more, it gives up.
If you send the bugreport file, I can take a look at it.

from chkbugreport.

jithu232 avatar jithu232 commented on July 29, 2024

Here it is:https://www.dropbox.com/s/aydrkf6vu0ohyuk/405_1807_2015-02-12_21-20-35.txt

from chkbugreport.

jithu232 avatar jithu232 commented on July 29, 2024

Hi,
Please help me, i got lot off bug report from client.

from chkbugreport.

space2 avatar space2 commented on July 29, 2024

Hi!

Unfortunately I don't recognize this format. Which application was used to save this bugreport?

from chkbugreport.

jithu232 avatar jithu232 commented on July 29, 2024

org.acra.ACRA lib file

from chkbugreport.

space2 avatar space2 commented on July 29, 2024

ChkBugReport does not support this format. Try to find help on http://www.acra.ch/ (maybe https://github.com/ACRA/acralyzer)

from chkbugreport.

jimandyzgs avatar jimandyzgs commented on July 29, 2024

This is still exist.
java -jar chkbugreport-0.5-215.jar ../battery-historian/bugreporttest.txt
ChkBugReport 0.5 (rev 215) (C) 2012 Sony Ericsson Mobile Communications AB
Failed to load plugin: com.sonyericsson.chkbugreport.AdbExtension
Loading input...
Loaded in 0.00 seconds.
Not a bugreport file

watching code:

private Plugin loadPlugin(String className) {
    try {
        Class<?> cls = Class.forName(className);
        return (Plugin)cls.newInstance();
    } catch (Throwable e) {
        printErr(1, "Failed to load plugin: " + className);
        return null;                        // cannot execu.
    }
}

but the code, cannot found com.sonyericsson.chkbugreport.AdbExtension.
Plugin adbExt = loadPlugin("com.sonyericsson.chkbugreport.AdbExtension");
if (adbExt != null) {
addPlugin(adbExt);
}

from chkbugreport.

jimandyzgs avatar jimandyzgs commented on July 29, 2024

download code, I don't know how to complie it,
I download tools,
"

http://sonyxperiadev.github.com/ChkBugReport/download/chkbugreport (Launcher shell script)
http://sonyxperiadev.github.com/ChkBugReport/download/chkbugreport-0.5-215.jar (The application itself)

"
but I execu it error, I use battery-historian to analysis bugreporttest.txt is good.
How I use this tool to analysis?

from chkbugreport.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.