flutter problem when update Xcode 12.5 and ios 14.5

858

Solution 1

The problem was with flutter_pusher_client: ^0.3.1 and laravel_echo: the packages not updated and they use an old version of Cryptoswift and get failed in build.

Solution 2

I ended up fixing flutter_pusher_client package to use most recent PusherSwift https://github.com/heywhy/flutter-pusher-client/pull/23

Until package is up to date you can use updated version

@pubspec.yaml
 
     flutter_pusher_client:
            git:
              url: https://github.com/yfer/flutter-pusher-client.git
Share:
858
Adham Elnagar
Author by

Adham Elnagar

Updated on December 29, 2022

Comments

  • Adham Elnagar
    Adham Elnagar over 1 year

    when Xcode updated the last version 12.5 when I build IOS app it failed because of flutter and pods Cryptoswiftimage for the error

    I tried to pod update but it downloads 0.15.0 not the last version of Cryptoswift

  • Jeroen Boumans
    Jeroen Boumans almost 3 years
    So what exactly was the solution? Dit you upgrade the flutter_pusher_client dependency?
  • SacWebDeveloper
    SacWebDeveloper almost 3 years
    Good, sounds like I can upgrade without issues then. Thanks for testing this out, bruh.
  • Adham Elnagar
    Adham Elnagar almost 3 years
    @JeroenBoumans I removed it for now and try to get another package.
  • Adham Elnagar
    Adham Elnagar almost 3 years
    can you provide a version without null safety?