Fabric Crashlytics NDK stack backtraces missing frames2019 Community Moderator ElectionBogus NDK stack backtrace after upgrading to Crashlytics NDK 2.+Crashlytics NDK symbols and Gradle tasksAndroid NDK crashes at low memory conditions (Crashlytics reporting)crashlytics android native crashes failed to report on dashboardfirebase Crashlytics ndk symbols is missingCrashlytics Android NDK: missing all symbols in crash reportsMissing stack trace of crash report from external dependenciesHow to fix bellow carsh of the android TV app ? (libc.so Missing)Invalid NDK crash backtraces on ARM/ARM64Bogus NDK stack backtrace after upgrading to Crashlytics NDK 2.+After setting up Crashlytics for NDK, I cannot see line numbers or symbols

When an outsider describes family relationships, which point of view are they using?

Are all players supposed to be able to see each others' character sheets?

Idiom for feeling after taking risk and someone else being rewarded

Does the US political system, in principle, allow for a no-party system?

What does the Digital Threat scope actually do?

How do spaceships determine each other's mass in space?

What do you call someone who likes to pick fights?

Professor forcing me to attend a conference, I can't afford even with 50% funding

Why do we say 'Pairwise Disjoint', rather than 'Disjoint'?

Why restrict private health insurance?

Converting from "matrix" data into "coordinate" data

What does *dead* mean in *What do you mean, dead?*?

ESPP--any reason not to go all in?

What is Tony Stark injecting into himself in Iron Man 3?

How is it possible to drive VGA displays at such high pixel clock frequencies?

Is there a math expression equivalent to the conditional ternary operator?

Playing a 7-string guitar song on a 6-string guitar

What is the "determinant" of two vectors?

cannot log in to the server after changing SSH port

Numerical value of Determinant far from what it is supposed to be

Can one live in the U.S. and not use a credit card?

Use Mercury as quenching liquid for swords?

Can the Witch Sight warlock invocation see through the Mirror Image spell?

Do Cubics always have one real root?



Fabric Crashlytics NDK stack backtraces missing frames



2019 Community Moderator ElectionBogus NDK stack backtrace after upgrading to Crashlytics NDK 2.+Crashlytics NDK symbols and Gradle tasksAndroid NDK crashes at low memory conditions (Crashlytics reporting)crashlytics android native crashes failed to report on dashboardfirebase Crashlytics ndk symbols is missingCrashlytics Android NDK: missing all symbols in crash reportsMissing stack trace of crash report from external dependenciesHow to fix bellow carsh of the android TV app ? (libc.so Missing)Invalid NDK crash backtraces on ARM/ARM64Bogus NDK stack backtrace after upgrading to Crashlytics NDK 2.+After setting up Crashlytics for NDK, I cannot see line numbers or symbols










3















I have an Android Studio project that includes multiple native shared libraries.



I followed the steps documented here to integrate Crashlytics NDK support and upload symbols to Fabric:
https://fabric.io/downloads/gradle/ndk



The crashes are successfully reported:



D/CrashlyticsCore: Checking for crash reports...
D/CrashlyticsCore: Attempting to send 1 report(s)
D/CrashlyticsCore: Sending report to: ...
D/CrashlyticsCore: Result was: 202
I/CrashlyticsCore: Crashlytics report upload complete:


and I do see them in the Fabric Crashlytics console.



However, I am seeing the following problems in the backtraces:



  1. There are missing frames. Oftentimes only one frame shows symbols from my native libraries (usually just the frame that caused the crash).

  2. The frames don't always seem to make sense. For example, between direct function calls there will be 'ghost' frames with no symbols.

  3. Missing symbols from libc.so

Here's an example:



#0
Crashed: Thread
SIGABRT 0x00000000000008b1

Crashed: Thread
0 libc.so 0xf5465d66 (Missing)
1 libc.so 0xf54a4665 (Missing)
2 libc.so 0xf5465fe1 (Missing)
3 libMyLibrary.so 0xd9e79622 (Missing)
4 libMyLibrary.so 0xd9c23d83 Java_com_xxxxxxxx (MySource.cpp:109)
5 (Missing) 0x705e92cc (Missing)
6 (Missing) 0xdb84aa3a (Missing)
7 (Missing) 0xf4645d9e (Missing)
8 libart.so 0xf37eacb7 (Missing)
9 (Missing) 0x136b8b36 (Missing)
10 (Missing) 0xdb84aa32 (Missing)
<frames omitted for brevity, all with missing symbols>
62 libart.so 0xf3a13ece (Missing)
63 libart.so 0xf3800caf (Missing)
64 (Missing) 0x13001756 (Missing)


Frame 3 is missing symbols. Also, there should have been other frames in my native lib following frame 4 but those are missing details.



I am using crashlytics:2.9.8 and crashlytics-ndk:2.0.5



Possibly related to Bogus NDK stack backtrace after upgrading to Crashlytics NDK 2.+



Any suggestions? Is there an issue with crashlytics-ndk-2.x?










share|improve this question







New contributor




Derek Rodrigues is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
























    3















    I have an Android Studio project that includes multiple native shared libraries.



    I followed the steps documented here to integrate Crashlytics NDK support and upload symbols to Fabric:
    https://fabric.io/downloads/gradle/ndk



    The crashes are successfully reported:



    D/CrashlyticsCore: Checking for crash reports...
    D/CrashlyticsCore: Attempting to send 1 report(s)
    D/CrashlyticsCore: Sending report to: ...
    D/CrashlyticsCore: Result was: 202
    I/CrashlyticsCore: Crashlytics report upload complete:


    and I do see them in the Fabric Crashlytics console.



    However, I am seeing the following problems in the backtraces:



    1. There are missing frames. Oftentimes only one frame shows symbols from my native libraries (usually just the frame that caused the crash).

    2. The frames don't always seem to make sense. For example, between direct function calls there will be 'ghost' frames with no symbols.

    3. Missing symbols from libc.so

    Here's an example:



    #0
    Crashed: Thread
    SIGABRT 0x00000000000008b1

    Crashed: Thread
    0 libc.so 0xf5465d66 (Missing)
    1 libc.so 0xf54a4665 (Missing)
    2 libc.so 0xf5465fe1 (Missing)
    3 libMyLibrary.so 0xd9e79622 (Missing)
    4 libMyLibrary.so 0xd9c23d83 Java_com_xxxxxxxx (MySource.cpp:109)
    5 (Missing) 0x705e92cc (Missing)
    6 (Missing) 0xdb84aa3a (Missing)
    7 (Missing) 0xf4645d9e (Missing)
    8 libart.so 0xf37eacb7 (Missing)
    9 (Missing) 0x136b8b36 (Missing)
    10 (Missing) 0xdb84aa32 (Missing)
    <frames omitted for brevity, all with missing symbols>
    62 libart.so 0xf3a13ece (Missing)
    63 libart.so 0xf3800caf (Missing)
    64 (Missing) 0x13001756 (Missing)


    Frame 3 is missing symbols. Also, there should have been other frames in my native lib following frame 4 but those are missing details.



    I am using crashlytics:2.9.8 and crashlytics-ndk:2.0.5



    Possibly related to Bogus NDK stack backtrace after upgrading to Crashlytics NDK 2.+



    Any suggestions? Is there an issue with crashlytics-ndk-2.x?










    share|improve this question







    New contributor




    Derek Rodrigues is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.






















      3












      3








      3


      2






      I have an Android Studio project that includes multiple native shared libraries.



      I followed the steps documented here to integrate Crashlytics NDK support and upload symbols to Fabric:
      https://fabric.io/downloads/gradle/ndk



      The crashes are successfully reported:



      D/CrashlyticsCore: Checking for crash reports...
      D/CrashlyticsCore: Attempting to send 1 report(s)
      D/CrashlyticsCore: Sending report to: ...
      D/CrashlyticsCore: Result was: 202
      I/CrashlyticsCore: Crashlytics report upload complete:


      and I do see them in the Fabric Crashlytics console.



      However, I am seeing the following problems in the backtraces:



      1. There are missing frames. Oftentimes only one frame shows symbols from my native libraries (usually just the frame that caused the crash).

      2. The frames don't always seem to make sense. For example, between direct function calls there will be 'ghost' frames with no symbols.

      3. Missing symbols from libc.so

      Here's an example:



      #0
      Crashed: Thread
      SIGABRT 0x00000000000008b1

      Crashed: Thread
      0 libc.so 0xf5465d66 (Missing)
      1 libc.so 0xf54a4665 (Missing)
      2 libc.so 0xf5465fe1 (Missing)
      3 libMyLibrary.so 0xd9e79622 (Missing)
      4 libMyLibrary.so 0xd9c23d83 Java_com_xxxxxxxx (MySource.cpp:109)
      5 (Missing) 0x705e92cc (Missing)
      6 (Missing) 0xdb84aa3a (Missing)
      7 (Missing) 0xf4645d9e (Missing)
      8 libart.so 0xf37eacb7 (Missing)
      9 (Missing) 0x136b8b36 (Missing)
      10 (Missing) 0xdb84aa32 (Missing)
      <frames omitted for brevity, all with missing symbols>
      62 libart.so 0xf3a13ece (Missing)
      63 libart.so 0xf3800caf (Missing)
      64 (Missing) 0x13001756 (Missing)


      Frame 3 is missing symbols. Also, there should have been other frames in my native lib following frame 4 but those are missing details.



      I am using crashlytics:2.9.8 and crashlytics-ndk:2.0.5



      Possibly related to Bogus NDK stack backtrace after upgrading to Crashlytics NDK 2.+



      Any suggestions? Is there an issue with crashlytics-ndk-2.x?










      share|improve this question







      New contributor




      Derek Rodrigues is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.












      I have an Android Studio project that includes multiple native shared libraries.



      I followed the steps documented here to integrate Crashlytics NDK support and upload symbols to Fabric:
      https://fabric.io/downloads/gradle/ndk



      The crashes are successfully reported:



      D/CrashlyticsCore: Checking for crash reports...
      D/CrashlyticsCore: Attempting to send 1 report(s)
      D/CrashlyticsCore: Sending report to: ...
      D/CrashlyticsCore: Result was: 202
      I/CrashlyticsCore: Crashlytics report upload complete:


      and I do see them in the Fabric Crashlytics console.



      However, I am seeing the following problems in the backtraces:



      1. There are missing frames. Oftentimes only one frame shows symbols from my native libraries (usually just the frame that caused the crash).

      2. The frames don't always seem to make sense. For example, between direct function calls there will be 'ghost' frames with no symbols.

      3. Missing symbols from libc.so

      Here's an example:



      #0
      Crashed: Thread
      SIGABRT 0x00000000000008b1

      Crashed: Thread
      0 libc.so 0xf5465d66 (Missing)
      1 libc.so 0xf54a4665 (Missing)
      2 libc.so 0xf5465fe1 (Missing)
      3 libMyLibrary.so 0xd9e79622 (Missing)
      4 libMyLibrary.so 0xd9c23d83 Java_com_xxxxxxxx (MySource.cpp:109)
      5 (Missing) 0x705e92cc (Missing)
      6 (Missing) 0xdb84aa3a (Missing)
      7 (Missing) 0xf4645d9e (Missing)
      8 libart.so 0xf37eacb7 (Missing)
      9 (Missing) 0x136b8b36 (Missing)
      10 (Missing) 0xdb84aa32 (Missing)
      <frames omitted for brevity, all with missing symbols>
      62 libart.so 0xf3a13ece (Missing)
      63 libart.so 0xf3800caf (Missing)
      64 (Missing) 0x13001756 (Missing)


      Frame 3 is missing symbols. Also, there should have been other frames in my native lib following frame 4 but those are missing details.



      I am using crashlytics:2.9.8 and crashlytics-ndk:2.0.5



      Possibly related to Bogus NDK stack backtrace after upgrading to Crashlytics NDK 2.+



      Any suggestions? Is there an issue with crashlytics-ndk-2.x?







      android android-ndk crashlytics-android






      share|improve this question







      New contributor




      Derek Rodrigues is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      share|improve this question







      New contributor




      Derek Rodrigues is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      share|improve this question




      share|improve this question






      New contributor




      Derek Rodrigues is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked Mar 6 at 22:00









      Derek RodriguesDerek Rodrigues

      161




      161




      New contributor




      Derek Rodrigues is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      Derek Rodrigues is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      Derek Rodrigues is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






















          0






          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );






          Derek Rodrigues is a new contributor. Be nice, and check out our Code of Conduct.









          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55032848%2ffabric-crashlytics-ndk-stack-backtraces-missing-frames%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          Derek Rodrigues is a new contributor. Be nice, and check out our Code of Conduct.









          draft saved

          draft discarded


















          Derek Rodrigues is a new contributor. Be nice, and check out our Code of Conduct.












          Derek Rodrigues is a new contributor. Be nice, and check out our Code of Conduct.











          Derek Rodrigues is a new contributor. Be nice, and check out our Code of Conduct.














          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55032848%2ffabric-crashlytics-ndk-stack-backtraces-missing-frames%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Thal And Out Agency railway station See also References External links Navigation menuOfficial Web Site of Pakistan RailwaysArchivedOfficial Web Site of Pakistan Railwayseeexpanding ite

          Understanding generators in Python2019 Community Moderator ElectionGenerator function not working pythonFor loop not executing two timesGenerators - Printing generated valuesWhy can a python generator only be used once?What exactly do generators do?What does the “yield” keyword do?What does “list comprehension” mean? How does it work and how can I use it?sklearn Kfold acces single fold instead of for loopIs a generator the callable? Which is the generator?Apply Border To Range Of Cells Using OpenpyxlCalling an external command in PythonWhat are metaclasses in Python?What is the difference between @staticmethod and @classmethod?Finding the index of an item given a list containing it in PythonDifference between append vs. extend list methods in PythonHow can I safely create a nested directory in Python?Does Python have a ternary conditional operator?Understanding slice notationUnderstanding Python super() with __init__() methodsDoes Python have a string 'contains' substring method?

          How can I change the color of pagination dots of UIPageControl?How to change UIPageControl dotsIs there a way to change page indicator dots colorCustomize dot with image of UIPageControl at index 0 of UIPageControlNo visible @interface for 'NSObject<PageControlDelegate>' declares the selector 'pageControlPageDidChange:'How to change the color of pagination dots in UIPageControl with a different color per pagepagecontrol indicator custom image instead of DefaultChanging the colour of UIPageControl dots in MonoTouchpagecontrol selectable page visibility color?Alternative way to load ViewControllers on a UIPageControlHow to set only layer.border-color for UIpage control dots in swiftHow can I develop for iPhone using a Windows development machine?How to change the name of an iOS app?UITableView - change section header coloruipagecontrol indicator(dot)issueCustom UIPageControl dots color not changingchange the interspace between UIPageControl dotsHow to change Status Bar text color in iOSHow can I change image tintColor in iOS and WatchKitUIPageControl dots with larger space in between each dotsHow to change the color of pagination dots in UIPageControl with a different color per page