Send crashes from android app without dialog showing

Alexander Zatsepin's Avatar

Alexander Zatsepin

17 Jul, 2012 07:46 AM

Hi!How can i send crash reports from my app without askings user via dialog! Is it possible?Thank you!

  1. Support Staff 2 Posted by Thomas Dohmke on 17 Jul, 2012 07:54 AM

    Thomas Dohmke's Avatar

    Hi Alexander,

    yes, this is possible by implementing the CrashManagerListener and returning true in the method onCrashesFound:

    CrashManager.register(this, APP_ID, new CrashManagerListener() {
      public Boolean onCrashesFound() {
        return true;
      }
    });
    

    More customization options are here:
    http://support.hockeyapp.net/kb/client-integration-android/customiz...

    Kind regards,

    Thomas

  2. 3 Posted by Alexander Zatsepin on 17 Jul, 2012 08:50 AM

    Alexander Zatsepin's Avatar

    Thank you , Thomas!I have found "customization options" already. Everething works fine.Thank you for quick answer, i like it.

  3. 4 Posted by Alexander Zatsepin on 17 Jul, 2012 08:54 AM

    Alexander Zatsepin's Avatar

    Thank you , Thomas!I have found "customization options" already. Everething works fine.Thank you for quick answer, i like it.

    Tue, 17 Jul 2012 03:54:47 -0400 от "Thomas Dohmke" <[email blocked]> :

  4. Thomas Dohmke closed this discussion on 17 Jul, 2012 03:39 PM.

Comments are currently closed for this discussion. You can start a new one.