-
If you are looking for help, please confirm the following...
Which mobile framework are you using?Flutter (Dart) Steps to reproduce
Expected results
Actual results
Additional Information: Build id (optional)No response |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
👋 @FltSv, Which version of App Check are you using in your project? Please verify your AppCheck setup in both the Firebase Console and your Flutter code. Make sure that the correct provider (appAttest or deviceCheck) is activated and that all necessary configurations (like the Apple Team ID) are correctly set. Here is a similar issue thread - firebase/flutterfire#9484 |
Beta Was this translation helpful? Give feedback.
Thank you for the additional information.
I had already enabled the App Attest capability and tried regenerating the provisioning profile, but unfortunately, there was no change.
I was at a loss, but after reviewing various settings, I was able to resolve the issue on my own. It turns out that the
appId
listed infirebase_options.dart
was the only one that was different from the one in the Firebase Console.Although I had successfully updated the
<FlutterProject>/ios/Runner/GoogleService-info.plist
and other configuration files, I had overlooked updatingFirebaseOptions
, which caused the problem.Thank you for your help, and I hope this information will be useful to future visitors.