Symbols not showing for external dependencyMultiple symbols of CrashlyticsAndroid: CrashlyticsMissingDependencyException on application startupCrashlytics for NDK just shows the method name in fabric logsandroidNdkOut and androidNdkLibsOut auto detection for library not workingFabric CrashLog only show the crashed .so file, doesn't show the detail line numberMissing stack trace of crash report from external dependenciesFailed to apply 'io.fabric' plugin on AndroidiOS app not showing on DashboardXcode 10b5 - duplicate symbol linker error, can't compile with Crashlytics
Grant dbcreator only for databases matching prefix
Could human civilization live 150 years in a nuclear-powered aircraft carrier colony without resorting to mass killing/ cannibalism?
What will happen if I checked in for another room in the same hotel, but not for the booked one?
How receiver knows the exact frequency in the channel to "listen to"?
Can you actually break an FPGA by programming it wrong?
Which is better for keeping data: primary partition or logical partition?
Comment traduire « That screams X »
Most important new papers in computational complexity
What verb for taking advantage fits in "I don't want to ________ on the friendship"?
Journal standards vs. personal standards
Different budgets within roommate group
What kind of jet plane is this?
When Chaos Bolt leaps, do you determine a new damage type?
Word ending in "-ine" for rat-like
Most elegant way to write a one-shot 'if'
How did researchers find articles before the Internet and the computer era?
How do I tell the reader that my character is autistic in Fantasy?
If two black hole event horizons overlap (touch) can they ever separate again?
Do home values typically rise and fall at a consistent percent?
Are the requirements of a Horn of Valhalla cumulative?
Can one use the present progressive or gerund like an adjective?
Is there a legal way for US presidents to extend their terms beyond two terms of four years?
Was it really unprofessional of me to leave without asking for a raise first?
Why don't we add Wilson loops to the SM Lagrangian?
Symbols not showing for external dependency
Multiple symbols of CrashlyticsAndroid: CrashlyticsMissingDependencyException on application startupCrashlytics for NDK just shows the method name in fabric logsandroidNdkOut and androidNdkLibsOut auto detection for library not workingFabric CrashLog only show the crashed .so file, doesn't show the detail line numberMissing stack trace of crash report from external dependenciesFailed to apply 'io.fabric' plugin on AndroidiOS app not showing on DashboardXcode 10b5 - duplicate symbol linker error, can't compile with Crashlytics
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
We are unsuccessfully trying to show symbols on native crashes for an external dependency.
We have an Android library module that builds the native libraries.
We have a separate fake Android application module as suggested by https://docs.fabric.io/android/crashlytics/ndk.html#uploading-symbols-for-external-dependencies that contains the Fabric plugin and symbols upload configuration. Using this build.gradle
file:
buildscript
repositories
google()
jcenter()
maven url 'https://maven.fabric.io/public'
dependencies
classpath 'com.android.tools.build:gradle:3.3.2'
classpath 'io.fabric.tools:gradle:1.28.1'
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'
android
compileSdkVersion 28
defaultConfig
applicationId "<REDACTED>"
// no need to specify versionCode or versionName
crashlytics
enableNdk true
// as plugin not applied to actual application/library module set paths manually
androidNdkOut '../build/intermediates/cmake/debug/obj/'
androidNdkLibsOut '../build/intermediates/cmake/release/obj/'
manifestPath 'src/main/AndroidManifest.xml'
The cSYM files are created and uploaded successfully. Yet, stack traces continue to have (missing) symbols.
How does Crashlytics know which symbols to use, is there info somewhere if uploaded symbols don't match? Does it always use the latest one uploaded or is there some versioning that might break things here?
android google-fabric
add a comment |
We are unsuccessfully trying to show symbols on native crashes for an external dependency.
We have an Android library module that builds the native libraries.
We have a separate fake Android application module as suggested by https://docs.fabric.io/android/crashlytics/ndk.html#uploading-symbols-for-external-dependencies that contains the Fabric plugin and symbols upload configuration. Using this build.gradle
file:
buildscript
repositories
google()
jcenter()
maven url 'https://maven.fabric.io/public'
dependencies
classpath 'com.android.tools.build:gradle:3.3.2'
classpath 'io.fabric.tools:gradle:1.28.1'
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'
android
compileSdkVersion 28
defaultConfig
applicationId "<REDACTED>"
// no need to specify versionCode or versionName
crashlytics
enableNdk true
// as plugin not applied to actual application/library module set paths manually
androidNdkOut '../build/intermediates/cmake/debug/obj/'
androidNdkLibsOut '../build/intermediates/cmake/release/obj/'
manifestPath 'src/main/AndroidManifest.xml'
The cSYM files are created and uploaded successfully. Yet, stack traces continue to have (missing) symbols.
How does Crashlytics know which symbols to use, is there info somewhere if uploaded symbols don't match? Does it always use the latest one uploaded or is there some versioning that might break things here?
android google-fabric
Have you tried to rungradlew crashlyticsUploadSymbolsDebug
with--stacktrace
option? Does it report any issues? I'm experiencing the same issue, but in my case it seems like no symbols uploaded
– rightaway717
Mar 28 at 20:42
According to logs symbols upload works. Talking to support about this now, hopefully they can help. Check the crashlytics.log file on your system for issues (in your user profile see.crashlyticscom.crashlytics.toolscrashlytics.log
). Edit: I have the suspicion that separate projects are no longer supported, despite the docs saying they are.
– Uwe - ObjectBox
Apr 1 at 7:35
add a comment |
We are unsuccessfully trying to show symbols on native crashes for an external dependency.
We have an Android library module that builds the native libraries.
We have a separate fake Android application module as suggested by https://docs.fabric.io/android/crashlytics/ndk.html#uploading-symbols-for-external-dependencies that contains the Fabric plugin and symbols upload configuration. Using this build.gradle
file:
buildscript
repositories
google()
jcenter()
maven url 'https://maven.fabric.io/public'
dependencies
classpath 'com.android.tools.build:gradle:3.3.2'
classpath 'io.fabric.tools:gradle:1.28.1'
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'
android
compileSdkVersion 28
defaultConfig
applicationId "<REDACTED>"
// no need to specify versionCode or versionName
crashlytics
enableNdk true
// as plugin not applied to actual application/library module set paths manually
androidNdkOut '../build/intermediates/cmake/debug/obj/'
androidNdkLibsOut '../build/intermediates/cmake/release/obj/'
manifestPath 'src/main/AndroidManifest.xml'
The cSYM files are created and uploaded successfully. Yet, stack traces continue to have (missing) symbols.
How does Crashlytics know which symbols to use, is there info somewhere if uploaded symbols don't match? Does it always use the latest one uploaded or is there some versioning that might break things here?
android google-fabric
We are unsuccessfully trying to show symbols on native crashes for an external dependency.
We have an Android library module that builds the native libraries.
We have a separate fake Android application module as suggested by https://docs.fabric.io/android/crashlytics/ndk.html#uploading-symbols-for-external-dependencies that contains the Fabric plugin and symbols upload configuration. Using this build.gradle
file:
buildscript
repositories
google()
jcenter()
maven url 'https://maven.fabric.io/public'
dependencies
classpath 'com.android.tools.build:gradle:3.3.2'
classpath 'io.fabric.tools:gradle:1.28.1'
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'
android
compileSdkVersion 28
defaultConfig
applicationId "<REDACTED>"
// no need to specify versionCode or versionName
crashlytics
enableNdk true
// as plugin not applied to actual application/library module set paths manually
androidNdkOut '../build/intermediates/cmake/debug/obj/'
androidNdkLibsOut '../build/intermediates/cmake/release/obj/'
manifestPath 'src/main/AndroidManifest.xml'
The cSYM files are created and uploaded successfully. Yet, stack traces continue to have (missing) symbols.
How does Crashlytics know which symbols to use, is there info somewhere if uploaded symbols don't match? Does it always use the latest one uploaded or is there some versioning that might break things here?
android google-fabric
android google-fabric
asked Mar 25 at 14:10
Uwe - ObjectBoxUwe - ObjectBox
3261 silver badge5 bronze badges
3261 silver badge5 bronze badges
Have you tried to rungradlew crashlyticsUploadSymbolsDebug
with--stacktrace
option? Does it report any issues? I'm experiencing the same issue, but in my case it seems like no symbols uploaded
– rightaway717
Mar 28 at 20:42
According to logs symbols upload works. Talking to support about this now, hopefully they can help. Check the crashlytics.log file on your system for issues (in your user profile see.crashlyticscom.crashlytics.toolscrashlytics.log
). Edit: I have the suspicion that separate projects are no longer supported, despite the docs saying they are.
– Uwe - ObjectBox
Apr 1 at 7:35
add a comment |
Have you tried to rungradlew crashlyticsUploadSymbolsDebug
with--stacktrace
option? Does it report any issues? I'm experiencing the same issue, but in my case it seems like no symbols uploaded
– rightaway717
Mar 28 at 20:42
According to logs symbols upload works. Talking to support about this now, hopefully they can help. Check the crashlytics.log file on your system for issues (in your user profile see.crashlyticscom.crashlytics.toolscrashlytics.log
). Edit: I have the suspicion that separate projects are no longer supported, despite the docs saying they are.
– Uwe - ObjectBox
Apr 1 at 7:35
Have you tried to run
gradlew crashlyticsUploadSymbolsDebug
with --stacktrace
option? Does it report any issues? I'm experiencing the same issue, but in my case it seems like no symbols uploaded– rightaway717
Mar 28 at 20:42
Have you tried to run
gradlew crashlyticsUploadSymbolsDebug
with --stacktrace
option? Does it report any issues? I'm experiencing the same issue, but in my case it seems like no symbols uploaded– rightaway717
Mar 28 at 20:42
According to logs symbols upload works. Talking to support about this now, hopefully they can help. Check the crashlytics.log file on your system for issues (in your user profile see
.crashlyticscom.crashlytics.toolscrashlytics.log
). Edit: I have the suspicion that separate projects are no longer supported, despite the docs saying they are.– Uwe - ObjectBox
Apr 1 at 7:35
According to logs symbols upload works. Talking to support about this now, hopefully they can help. Check the crashlytics.log file on your system for issues (in your user profile see
.crashlyticscom.crashlytics.toolscrashlytics.log
). Edit: I have the suspicion that separate projects are no longer supported, despite the docs saying they are.– Uwe - ObjectBox
Apr 1 at 7:35
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55339753%2fsymbols-not-showing-for-external-dependency%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
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55339753%2fsymbols-not-showing-for-external-dependency%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
Have you tried to run
gradlew crashlyticsUploadSymbolsDebug
with--stacktrace
option? Does it report any issues? I'm experiencing the same issue, but in my case it seems like no symbols uploaded– rightaway717
Mar 28 at 20:42
According to logs symbols upload works. Talking to support about this now, hopefully they can help. Check the crashlytics.log file on your system for issues (in your user profile see
.crashlyticscom.crashlytics.toolscrashlytics.log
). Edit: I have the suspicion that separate projects are no longer supported, despite the docs saying they are.– Uwe - ObjectBox
Apr 1 at 7:35