I have firebase crashlytics integrated on a new android app and its currently deployed on internal test track only. I see the internal version tags show in crashlytics but I see no crashes for that those versions.
Are crashlytics logs not available for internal test track? Would they work for alpha (closed) test track?
AndroidManifest.xml
has:
<meta-data android:name="firebase_crashlytics_collection_enabled"
android:value="false" />
Initializing as:
Fabric.with(Fabric.Builder(this)
.kits(Crashlytics(), CrashlyticsNdk())
.build())
in the Application
subclass.
The setup was done following the instructions here: https://firebase.google.com/docs/crashlytics/get-started#android
Also added:
implementation 'com.crashlytics.sdk.android:crashlytics-ndk:2.0.5'
to the build.gradle
for crashlytics ndk
support. (Assuming the symbols are uploaded automatically with cmake build)