You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Leads to the uploading of random dsyms (in my case, the wakelock_plus dependency).
here's more specific one to make sure the correct dsym is being uploaded. just thought id point it out!
echo "Find build artifacts"
dsymPath=$(find $CM_BUILD_DIR/build/ios/archive/Runner.xcarchive/dSYMs -name "Runner.app.dSYM" | head -1)
if [[ -z ${dsymPath} ]]
then
echo "No debug symbols for the app were found, skipping publishing to Firebase Crashlytics"
else
echo "Publishing debug symbols from $dsymPath to Firebase Crashlytics"
$CM_BUILD_DIR/ios/Pods/FirebaseCrashlytics/upload-symbols \
-gsp ios/Runner/GoogleService-Info.plist -p ios $dsymPath
fi
Using the post publish script from this article
https://docs.codemagic.io/knowledge-firebase/firebase-crashlytics-dsym-uploading/
Leads to the uploading of random dsyms (in my case, the wakelock_plus dependency).
here's more specific one to make sure the correct dsym is being uploaded. just thought id point it out!
https://discord.com/channels/1131597315707261018/1172564625204715600/1327652648740065444
The text was updated successfully, but these errors were encountered: