実現したいこと
FlutterでiOSのArchiveを成功させたい。
Firabaseとの連携をしています。
発生している問題・分からないこと
<unknown>:0: error: module map file '/Users/tttt/Library/Developer/Xcode/DerivedData/Runner-fatybfrjeyrlamfnyorjylhlpmaz/Build/Intermediates.noindex/ArchiveIntermediates/Runner/BuildProductsPath/Release-iphoneos/FirebaseCoreInternal/FirebaseCoreInternal.modulemap' not found
<unknown>:0: error: module map file '/Users/tttt/Library/Developer/Xcode/DerivedData/Runner-fatybfrjeyrlamfnyorjylhlpmaz/Build/Intermediates.noindex/ArchiveIntermediates/Runner/BuildProductsPath/Release-iphoneos/url_launcher_ios/url_launcher_ios.modulemap' not found
url_launcher_ios.modulemap' not found
ファイルがないと言われている。
エラーメッセージ
error
1 2Showing Recent Issues 3Module map file '/Users/ttt/Library/Developer/Xcode/DerivedData/Runner-fatybfrjeyrlamfnyorjylhlpmaz/Build/Intermediates.noindex/ArchiveIntermediates/Runner/BuildProductsPath/Release-iphoneos/FirebaseCoreInternal/FirebaseCoreInternal.modulemap' not found 4 5
該当のソースコード
Flutter
1# Uncomment this line to define a global platform for your project 2platform :ios, '15.0' 3 4# CocoaPods analytics sends network stats synchronously affecting flutter build latency. 5ENV['COCOAPODS_DISABLE_STATS'] = 'true' 6 7project 'Runner', { 8 'Debug' => :debug, 9 'Profile' => :release, 10 'Release' => :release, 11} 12 13def flutter_root 14 generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__) 15 unless File.exist?(generated_xcode_build_settings_path) 16 raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first" 17 end 18 19 File.foreach(generated_xcode_build_settings_path) do |line| 20 matches = line.match(/FLUTTER_ROOT\=(.*)/) 21 return matches[1].strip if matches 22 end 23 raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get" 24end 25 26require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root) 27 28flutter_ios_podfile_setup 29 30target 'Runner' do 31 use_modular_headers! 32 33 flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__)) 34 target 'RunnerTests' do 35 inherit! :search_paths 36 end 37end 38 39post_install do |installer| 40 installer.pods_project.targets.each do |target| 41 flutter_additional_ios_build_settings(target) 42 end 43end 44
試したこと・調べたこと
- teratailやGoogle等で検索した
- ソースコードを自分なりに変更した
- 知人に聞いた
- その他
上記の詳細・結果
エラー内容として、module map ファイル(modulemap ファイル)が見つからないため、ビルドが失敗していることが原因かと思っています。
なので、 CocoaPods の依存関係が正しくインストールされていないとおもい下記を実行しました。
- CocoaPods の再インストール
pod deintegrate
pod install --repo-update
- DerivedData の削除
キャッシュ削除
rm -rf ~/Library/Developer/Xcode/DerivedData
3.クリーン化
Flutter clean
Flutter pub get
Flutter buid ios
これらを行ったのですが、エラーが解決しません。
何か他に方法があれば教えてください。
補足
特になし
あなたの回答
tips
プレビュー