supabase-flutter
supabase-flutter copied to clipboard
Module 'app_links' not found
When I try to run my app from XCode, the build fails with the error Module 'app_links' not found. I need to get past this because I want to run the app on a physical device. I have tried:
flutter clean && flutter pub get- Delete
ios/Pods,ios/PodFile.lockand evenios/Flutter pod repo updatepod install
I have also ensure that both supabase and cocoapods are the latest version.
Exact same issue here. I wonder if its because I'm on iOS 18.3 beta. I really don't want to downgrade
It's the same for me, anyone found the way to fix that?
What Flutter version are you running?
When opening your project with XCode, make sure to open xcworkspace instead of xcproject.
@DanMossa Its been a few months since I last looked into it but I am fairly certain that it was the latest version at that time. And I am also fairly certain that this problem still exists, but it only comes up if you try to build from XCode.
@bdlukaa I tried and had an issue in both.
I fixed it. If I remember correctly, to fix the issue I had to
1-completely delete my iOS file on my flutter project and reinitialize. (I wish I remembered the exact commands) 2-go in manually on new Runner.xcworkspace and set the build target of all pods to the minimum iOS deployment target of the app.
I wish I were a bigger help. It took a lot of ChatGPT help (with search on for up-to-date references) and a specific stack overflow thread. I'll link it if I find it again.
@MicahYea I thought about doing that but chose not in the end because it was an already deployed project with tons of native configurations for things like permissions, notifications, etc.