-
Notifications
You must be signed in to change notification settings - Fork 326
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Bug]: iOS Compilation error with version 0.14.3 #159
Comments
Hi! I encountered the same problem yesterday. This is confusing, that is the same error as mentioned in (#156), isn't it? Although v0.14.3 was supposed to fix it? |
I use this this version but the problem is still |
Yes I also have this issue. Is there any work around? |
i don't find nothing about that
|
I got it to work by bumping the version of FBSDKCoreKit Here is the PR - #160 |
any updates about this case? |
Yes, comments waiting in PR #160 (comment) |
you can check the error here: https://ibb.co/DKp4MXr |
@DennisAlund Is there a solution because I can not publish the application? |
@zitob9 you can post screenshots and logs here in Github so it's easier to review: https://docs.github.com/en/github/writing-on-github/working-with-advanced-formatting/attaching-files |
Hi, I had installed both versions 0.14.3 and 0.14.5, but I found exactly the same issue mentioned above. To solve the problem, I had to make a change in my pod file from:
This change made my code compile correctly, and I am using version |
@DennisAlund its works now when I use v 0.14.5 |
@DennisAlund @deepsan98 's solution works Error: |
the same issue for me |
clean your data. you can use this command on your folder: flutter clean \ && rm ios/Podfile.lock pubspec.lock \ && rm -rf ios/Pods ios/Runner.xcworkspace |
@DennisAlund Are you kidding? :) So the thing is that to solve this forever we need to change the version of the In general take a look at this PR #170 |
@OneXeor why do you think I am kidding? What's the joke? |
@DennisAlund because you could solve it 16 days ago in PR#157, once and for all. But 8 days ago in PR#163, to my mind, you decided to play a joke cause you reverted the fix. |
I am having "isAdvertiserIDCollectionEnabled", does this PR fix it? |
@deepsan98 I'm interested to learn more why FBSDKCoreKit resolved to
According to cocoapods documentation it should have resolved to |
See if |
yes its work for me, thank so much bro. |
@furkanvatandas please provide output from |
@DennisAlund sure
|
@DennisAlund, I am guessing that my PR could fix that :) |
Hi @furkanvatandas have you try update pod repo first?
|
@kotchuprik @furkanvatandas Basically, we're trying to figure out why FBSDKCoreKit is not updating to the latest version (12.1.0) while the optimistic operator
I'd appreciate it if you could also provide your feedback after trying out the steps above. It will help us provide the best solution for the community on similar problems. Good luck. |
Anyone checked #173 PR? Because I have some doubts how can it work, it uses
I saw your comment but still It makes no sense because |
@suryaoddbit I try your all command and also this commands
Still not compile |
hi @furkanvatandas , do you use mac m1 ?
make sure you use this command after you use
Let me know if this way is not working. |
0.14.7 working 👍 (M1) |
Is there an existing issue for this?
Current Behavior
i update to 0.14.3, i clean flutter and iOS
When building the project, I'm getting the following error messages:
Cannot convert value of type '[AppEvents.ParameterName : Any]' to expected argument type '[String : Any]'
Cannot convert value of type '[AppEvents.ParameterName : Any]' to expected argument type '[String : Any]'
problem is on this code: (SwiftFacebookAppEventsPlugin)
private func handleLogEvent(_ call: FlutterMethodCall, result: @escaping FlutterResult) { let arguments = call.arguments as? [String: Any] ?? [String: Any]() let eventName = arguments["name"] as! String let parameters = arguments["parameters"] as? [AppEvents.ParameterName: Any] ?? [AppEvents.ParameterName: Any]() if arguments["_valueToSum"] != nil && !(arguments["_valueToSum"] is NSNull) { let valueToDouble = arguments["_valueToSum"] as! Double AppEvents.logEvent(AppEvents.Name(eventName), valueToSum: valueToDouble, parameters: parameters) } else { AppEvents.logEvent(AppEvents.Name(eventName), parameters: parameters) }
Expected Behavior
Build should be successful.
Steps To Reproduce
Using Xcode 13.1, flutter version 2.2.3:
Platform
iOS
Flutter Doctor
The text was updated successfully, but these errors were encountered: