6.7 C
New York
Friday, November 15, 2024

Flutter iOS Firebase logs now not printing for App Attest


I’ve an issue with a challenge that used to print out the Firebase logs and I used to be in a position to gather the App Attest debug token. This isn’t an issue on Android, it prints out each log that it’s alleged to.

I have never touched the challenge for just a few months however since then iOS 18 has come out which I think performs a task on this however I am unable to discover any proof.

My Flutter setup is as such:

[✓] Flutter (Channel secure, 3.24.3, on macOS 15.0.1 24A348 darwin-x64, locale en-AU)
    • Flutter model 3.24.3 on channel secure at /Customers/haydenyoung/DevTools/Flutter
    • Upstream repository https://github.com/flutter/flutter.git
    • Framework revision 2663184aa7 (6 weeks in the past), 2024-09-11 16:27:48 -0500
    • Engine revision 36335019a8
    • Dart model 3.5.3
    • DevTools model 2.37.3

My dependencies within the pubspec.yaml embody the next:

  firebase_analytics: ^11.3.3
  firebase_app_check: ^0.3.1+3
  firebase_core: ^3.6.0
  firebase_crashlytics: ^4.1.3
  firebase_performance: ^0.10.0+8
  firebase_messaging: ^15.1.3
  firebase_remote_config: ^5.1.3

My present code to setup Firebase is

WidgetsFlutterBinding.ensureInitialized();
await Firebase.initializeApp();
await FirebaseAppCheck.occasion.activate(
        webProvider: ReCaptchaV3Provider('recaptcha-v3-site-key'),
        androidProvider: AndroidProvider.debug,
        appleProvider: AppleProvider.debug,
      );

I’ve deleted the podlock file, the Pods folder, the pubspec.lock, Flutter clear, pub get, pub replace, pub outdated

I’ve the -FIRDebugEnabled flag within the Arguments Handed On Launch within the Scheme for the Run Debug in my iOS app.

I’ve created a brand new challenge, given the identical bundle id and the identical GoogleService-Information and it additionally had the identical downside

I’ve tried downgrading the dependencies to what they have been when all the pieces was working solely to be met with compile errors.

I added

    FirebaseAppDelegateProxyEnabled
    

to the data.plist

I’ve used a simulator utilizing iOS 18 and iOS 17, I’ve used a tool working iOS 17.

App Attest continues to be enabled on the related Certificates that are related to the related Provisioning Profiles

None of this stuff have modified the truth that Firebase is not logging to the console

Related Articles

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Latest Articles