Reputation: 21
I'm encountering an issue with Firebase in my project, specifically related to a missing dSYM file. I've tried multiple setups with Xcode for setting up with different flavors. , but I'm still stuck.
I've checked my Firebase configuration, and everything seems to be in order. However, when releasing the development version there seems to be a missing dSYM only on dev where production is working fine, I get an error related to a missing dSYM file.
Error message:
Missing dSYM file for Firebase
I tried using scripts found in this community.
Flutter: Upload dsym symbols to Firebase crashlytics with flavors
None of the above is working also I see
Note:
firebaseappid_file.json in the root of the iOS folder with production credentials of firebase.
Is there a way to modify firebaseappid_file.json file with multiple flavors?
Credentials are removed for security reasons.
{
"file_generated_by": "FlutterFire CLI",
"purpose": "FirebaseAppID & ProjectID for this Firebase app in this directory",
"GOOGLE_APP_ID": "APP_ID_HERE",
"FIREBASE_PROJECT_ID": "FIREBASE_PROJECT_ID",
"GCM_SENDER_ID": "GCM_SENDER_ID"
}
Upvotes: 2
Views: 371