Questions tagged [flutter-ios-build]

90 questions
0
votes
0 answers

Flutter plugin - downgrading iOS version causes an 'Unknown receiver' error

I built a flutter plugin that supports iOS 13 and it works fine. Now I'm trying to update the iOS support to be from 12 and I'm running into issues. I have updated the Podfile in the example project to be: platform :ios, '12.0'. I have also have…
Shai Herman
  • 126
  • 9
0
votes
1 answer

Flutter app not build on IOS due to Cocoapods is not installed

System: Apple Macbook pro 14 Inch Processor: M1 chip IDE- Android Studio Giraffe, Issue - Warning: CocoaPods not installed. Skipping pod install.CocoaPods is used to retrieve the iOS and macOS platform side's plugin code that responds to your plugin…
0
votes
1 answer

ARC Semantic Issue (Xcode) for Flutter Webview

I am using a Flutter package named webview_flutter (4.2.0), and facing an error when I try to run my application on iOS device, there is an error message saying that ARC Semantic Issue (Xcode): No visible @interface for 'FWFWebView' declares the…
KeroJohn97
  • 145
  • 1
  • 7
0
votes
0 answers

No visible @interface for 'LocationPlugin' declares the selector 'presentViewController:animated:completion:'

UIAlertController *alert = [[UIAlertController alloc] initWithTitle:@"Location is Disabled" message:@"To use location, go to your Settings App > Privacy > Location Services." delegate: self cancelButtonTitle:@"Cancel" otherButtonTitles: nil]; [alert…
0
votes
0 answers

error build: failed to emit precompiled header

My Project is in Flutter I am going to run it on iOS but its not building up and showing an error When i am going to run my project i am getting this issue error build: failed to emit precompiled header…
0
votes
0 answers

What should I do with Runner.app.zip folder. IOS Build

I made an app for my boss but he has iphone and ı am using windows. I could not build for ios. I have tried codemagic but because of that I do not have app store profile, I could not get ipa file(no code signing). I got a Runner.app.zip folder but I…
0
votes
0 answers

Xcode ios build failed from after update in xcode 14.0

I am using mac (with m1 chip) and trying to generate Flutter app ios build from Xcode. It was required to update the Xcode to version 14.0, I updated that and got so many errors like in the screenshot. I tried a lot like re-installation of pod…
0
votes
0 answers

Flutter button gets enlarged onPressed()

I have built a paywall component in flutterflow - But the payment button enlarges itself while loading the revenuecat subscription plans. Here is the iOS screenshot of the iOS button before pressed and iOS button after pressed Below is the code…
0
votes
1 answer

Flutter Build iOS Error 'FirebaseCore/FirebaseCore.h' file not found

Cannot build project on iPhone 11 and above but archive and used in iPhone X. This is the error is I'm facing... 'FirebaseCore/FirebaseCore.h' file not found Also on top of it. Inside AppDelegate.swift:3:8 Could not build Objective-C module…
Taimoor Sikander
  • 605
  • 1
  • 3
  • 11
0
votes
1 answer

Unable to build flutter IOS

Swift Compiler Error (Xcode): Unknown type name 'CGSize'; did you mean…
0
votes
0 answers

Flutter build for iOS Fails with the error "requires a provisioning profile with the Associated Domains feature"

i have been trying to build and ipa of my flutter app and it is failing with the following error. i want to build an ipa for internal distribution with development certificate and i am trying to automate the flow with code magic. Encountered error…
0
votes
1 answer

Flutter build ios failing: identifier Xcode.IDEKit and other errors

I have a Flutter project that I have rewritten from scratch given the breaking changes of Flutter v3 and Firebase core. It now builds and runs on Android without any trouble, and up to a few weeks ago was running in the ios simulator on…
SamHeyman
  • 207
  • 3
  • 13
0
votes
2 answers

Flutter - Xcode can't see app packages while building for Simulator

Whenever I try running my app Xcode gives me this: Launching lib/main.dart on iPhone 14 Pro Max in debug mode... lib/main.dart:1 Xcode build done. 9.9s Failed to build iOS app Error output from Xcode…
Abdelrahman
  • 623
  • 7
  • 13
0
votes
1 answer

Flutter iOS build warnings

When I try to archive my flutter product for release I am getting lot of warnings as shown below. Minimum deployment iOS version: 12 Xcode version: 14.2 My POD file for installation as below: post_install do |installer| …
fazilSizzlers
  • 195
  • 10
0
votes
0 answers

What does 'Bad File descriptor' mean for Flutter ios?

I keep getting 'Bad file descriptor' errors for Flutter on iOS production builds. According to Sentry, they come from the post request I am sending to the backend. Code of post function: static Future post( String endPoint,…