Xcodeで実機デバッグ試すとThis operation can fail if the version of the OS on the device is incompatible…と出る

Xcodeで実機デバッグを試みたところ、下記のエラーが発生しました こちらの問題ですが、どうやらXcodeでバージョンの対応があるかないか?で判断してるようで、対応していないとエラーが出るみたいです ちなみに対応している …

XcodeでimageLiteralが出てこない

Xcode 13.2.1でimageLiteralがサジェストで出てこなく、調べてみたら記述方法が変わったとのことです #imageLiteralと記述し、その後に括弧を入れることで画像選択UIが発火します 参考記事 C …

[WIP]NeoVim + iOSでUIKitやSwiftUIの補完を可能にする

sourcekit lspを追加するところまでは全く問題なかったのですが、 などのiOSのUI frameworkが動かない問題が発生し、そのエラーを解消するための方法の記事になります 従って、最初からstep by s …

/build/ios/iphoneos/Runner.app. ではなく/build/ios/archive/Runner.xcarchive.を生成する方法

リリース用のアーカイブ生成するためにひたすらios でやっていて、リリースまでいけませんでしたが、よく考えてみたらipaじゃないか?的なことを考えて試したところいけました 参考記事 Build and release a …

FlutterでGoogleService-info.plistの更新が全くかからない時の対処法

結論、GoogleService-info.plistはAndroid StudioじゃなくてXcodeに貼り付けろ、です 環境ごとにFirebaseを分けて色々といじっていたら、Firebaseで発行したtokenをA …

Thread 1: “Default app has already been configured.”

flutter + firebaseでタイトルのエラー発生 ios/AppDelegate.swiftにfirebaseを入れていたのですが、xcodeでデバッグしたらすでに設定されてます、と表示されていたのでコメントし …

[!] CocoaPods could not find compatible versions for pod “firebase_auth”:
In Podfile:
firebase_auth (from .symlinks/plugins/firebase_auth/ios)

flutterに firebase入れようとしたらタイトルのエラー発生 これで通りました 参考記事 CocoaPods could not find compatible versions for pod “Fireba …

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 usage on the Dart side.
Without CocoaPods, plugins will not work on iOS or macOS.
For more info, see https://flutter.dev/platform-plugins
To install see https://guides.cocoapods.org/using/getting-started.html#installation for instructions.

ターミナルからAndroid Studioを起動するとエラーが出ないようなので、こちらを実行 動きました! 参考記事 Android StudioでFlutterアプリ(iPhoneエミュレータ)を実行すると’Warni …

[!] The ‘Pods-Runner’ target has transitive dependencies that include statically linked binaries: (/Users/masahirookubo/myprojects/ios/Flutter/Flutter.framework)

1> flutter clean2> Delete ios/Flutter/Flutter.framework3> pod install でいけました 参考記事 [!] The ‘Pods …