Flutter團(tuán)隊(duì)開發(fā)安裝路徑不一致時(shí)編譯失敗的問題(iOS)

從年初開始在項(xiàng)目中引入flutter,用其實(shí)現(xiàn)了部分簡(jiǎn)單的頁面。
我們團(tuán)隊(duì)中Pod的使用和主流有些不一樣,Pods目錄是不寫入.gitignore的??阅签。

原因:

當(dāng)通過pod引入Flutter module并執(zhí)行pod install 后,Pod Project中Flutter相關(guān)的Targrt配置里都會(huì)寫入Flutter.xcframework的絕對(duì)路徑蝎抽;
再加上我們git沒有忽略pod目錄政钟;
所以如果不同的電腦Flutter安裝路徑不同,就會(huì)編譯報(bào)錯(cuò)樟结,找不到Flutter.xcframework养交。

有比較簡(jiǎn)單的解決方案
  1. Pods文件夾不要上傳到git
  2. 確保各電腦的flutter安裝路徑統(tǒng)一,比如都是Users/flutter/狭吼,

由于我想了解下flutter的構(gòu)建方式层坠,因此決定通過編寫腳本的方式解決這個(gè)問題

通過分析,看到路徑的配置是在xxxxxx/flutter/packages/flutter_tools/bin/podhelper.rb這個(gè)腳本中(省略了無關(guān)的代碼)

def flutter_additional_ios_build_settings(target)
    ...
  artifacts_dir = File.join('..', '..', '..', '..', 'bin', 'cache', 'artifacts', 'engine')
  debug_framework_dir = File.expand_path(File.join(artifacts_dir, 'ios', 'Flutter.xcframework'), __FILE__)
  release_framework_dir = File.expand_path(File.join(artifacts_dir, 'ios-release', 'Flutter.xcframework'), __FILE__)
  ...
  target.build_configurations.each do |build_configuration|
        ...
    # Skip other updates if it's not a Flutter plugin (transitive dependency).
    next unless target.dependencies.any? { |dependency| dependency.name == 'Flutter' }
    ...
    # Profile can't be derived from the CocoaPods build configuration. Use release framework (for linking only).
    configuration_engine_dir = build_configuration.type == :debug ? debug_framework_dir : release_framework_dir
    Dir.new(configuration_engine_dir).each_child do |xcframework_file|
      next if xcframework_file.start_with?('.') # Hidden file, possibly on external disk.
      if xcframework_file.end_with?('-simulator') # ios-arm64_x86_64-simulator
        build_configuration.build_settings['FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]'] = "\"#{configuration_engine_dir}/#{xcframework_file}\" $(inherited)"
      elsif xcframework_file.start_with?('ios-') # ios-arm64
        build_configuration.build_settings['FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]'] = "\"#{configuration_engine_dir}/#{xcframework_file}\" $(inherited)"
       # else Info.plist or another platform.
      end
    end
   ...
  end
end

如果能夠修改這里腳本寫入的路徑刁笙,比如debug_framework_dir = File.join("$(Flutter_Install_Path)", 'bin', 'cache', 'artifacts', 'engine', 'ios', 'Flutter.xcframework')破花,然后只需要在xcconfig中定義不同的Flutter_Install_Path就可以解決問題了。

但是修改flutter中的腳本是比較危險(xiǎn)的操作疲吸,因此決定通過編寫腳本再次修改掉flutter寫入的Flutter.xcframework路徑座每。
方案還是比較簡(jiǎn)單的,下面直接給出步驟:

  1. 在Podfile同級(jí)目錄創(chuàng)建一個(gè)文件Flutter_Path.xcconfig摘悴,寫入自己電腦上Flutter安裝路徑kv (這個(gè)文件需要寫入.gitignore)

    Flutter_Install_Path = /Users/dadadongl/flutter
    
  2. 修改Podfile中的腳本 (下面是修改前/后)

    # 修改前
    post_install do |installer|  
      flutter_post_install(installer) if defined?(flutter_post_install)
    end
    
     # 修改后
     post_install do |installer|
       # 先執(zhí)行flutter正常的腳本
       flutter_post_install(installer) if defined?(flutter_post_install)
     
       # 注入環(huán)境變量 & 修改flutter默認(rèn)寫入的framework search path
    
       # 遍歷Pod中的Targets
       installer.pods_project.targets.each do |target|
     
         # 修改flutter.xcframework的引用路徑配置 (后面這段腳本基本是基于flutter的腳本修改的峭梳,做到改動(dòng)最少)
         # 跳過沒有依賴'Flutter'的target
         next unless target.dependencies.any? { |dependency| dependency.name == 'Flutter' }
    
         # 構(gòu)造使用了環(huán)境變量$(Flutter_Install_Path)"的search path
         debug_framework_dir = File.join("$(Flutter_Install_Path)", 'bin', 'cache', 'artifacts', 'engine', 'ios', 'Flutter.xcframework')
         release_framework_dir = File.join("$(Flutter_Install_Path)", 'bin', 'cache', 'artifacts', 'engine', 'ios-release', 'Flutter.xcframework')
         # 解析自定義的xcconfig文件,為了拿到Flutter安裝路徑
         xcconfig = Xcodeproj::Config.new("./Flutter_Path.xcconfig")
         flutter_DIR = xcconfig.attributes["Flutter_Install_Path"]
         
         # 拿到Flutter的安裝絕對(duì)路徑
         full_debug_framework_dir = File.join(flutter_DIR, 'bin', 'cache', 'artifacts', 'engine', 'ios', 'Flutter.xcframework')
         full_release_framework_dir = File.join(flutter_DIR, 'bin', 'cache', 'artifacts', 'engine', 'ios-release', 'Flutter.xcframework')
         
         # 遍歷Target下的配置環(huán)境(Debug 蹂喻、Release)
         target.build_configurations.each do |build_configuration|
           
           # 追加自定義環(huán)境變量到 Pod 庫的 .xcconfig 文件葱椭,為了編譯時(shí)能夠識(shí)別$(Flutter_Install_Path)
           xcconfig_path = build_configuration.base_configuration_reference.real_path
           # 這里導(dǎo)入時(shí)相對(duì)pod.debug.xcconfig的路徑
           File.write(xcconfig_path, "#include \"../../../Flutter_Path.xcconfig\"", mode: 'a')
           
           # 修改 FRAMEWORK_SEARCH_PATHS
           configuration_engine_dir = build_configuration.type == :debug ? debug_framework_dir : release_framework_dir
           full_configuration_engine_dir = build_configuration.type == :debug ? full_debug_framework_dir : full_release_framework_dir
          
           Dir.new(full_configuration_engine_dir).each_child do |xcframework_file|
             next if xcframework_file.start_with?('.') # Hidden file, possibly on external disk.
             
             if xcframework_file.end_with?('-simulator') # ios-arm64_x86_64-simulator
               build_configuration.build_settings['FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]'] = "\"#{configuration_engine_dir}/#{xcframework_file}\" $(inherited)"
             elsif xcframework_file.start_with?('ios-') # ios-arm64
               build_configuration.build_settings['FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]'] = "\"#{configuration_engine_dir}/#{xcframework_file}\" $(inherited)"
               # else Info.plist or another platform.
             end
           end 
         end
       end
     end
    
  3. 重新執(zhí)行Pod install

通過上述步驟后,就會(huì)把Flutter_Install_Path = /Users/dadadongl/flutter注入各Pod Target口四,然后修改后的framework search path就可以找到正確的路徑孵运,并成功編譯。

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末蔓彩,一起剝皮案震驚了整個(gè)濱河市治笨,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌赤嚼,老刑警劉巖旷赖,帶你破解...
    沈念sama閱讀 206,311評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異更卒,居然都是意外死亡等孵,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,339評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門逞壁,熙熙樓的掌柜王于貴愁眉苦臉地迎上來流济,“玉大人锐锣,你說我怎么就攤上這事腌闯∩粒” “怎么了?”我有些...
    開封第一講書人閱讀 152,671評(píng)論 0 342
  • 文/不壞的土叔 我叫張陵姿骏,是天一觀的道長(zhǎng)糖声。 經(jīng)常有香客問我,道長(zhǎng)分瘦,這世上最難降的妖魔是什么蘸泻? 我笑而不...
    開封第一講書人閱讀 55,252評(píng)論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮嘲玫,結(jié)果婚禮上悦施,老公的妹妹穿的比我還像新娘。我一直安慰自己去团,他們只是感情好抡诞,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,253評(píng)論 5 371
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著土陪,像睡著了一般昼汗。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上鬼雀,一...
    開封第一講書人閱讀 49,031評(píng)論 1 285
  • 那天顷窒,我揣著相機(jī)與錄音,去河邊找鬼源哩。 笑死鞋吉,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的励烦。 我是一名探鬼主播谓着,決...
    沈念sama閱讀 38,340評(píng)論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼崩侠!你這毒婦竟也來了漆魔?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 36,973評(píng)論 0 259
  • 序言:老撾萬榮一對(duì)情侶失蹤却音,失蹤者是張志新(化名)和其女友劉穎改抡,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體系瓢,經(jīng)...
    沈念sama閱讀 43,466評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡阿纤,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,937評(píng)論 2 323
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了夷陋。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片欠拾。...
    茶點(diǎn)故事閱讀 38,039評(píng)論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡胰锌,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出藐窄,到底是詐尸還是另有隱情资昧,我是刑警寧澤,帶...
    沈念sama閱讀 33,701評(píng)論 4 323
  • 正文 年R本政府宣布荆忍,位于F島的核電站格带,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏刹枉。R本人自食惡果不足惜叽唱,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,254評(píng)論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望微宝。 院中可真熱鬧棺亭,春花似錦、人聲如沸蟋软。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,259評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽钟鸵。三九已至钉稍,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間棺耍,已是汗流浹背贡未。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評(píng)論 1 262
  • 我被黑心中介騙來泰國(guó)打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留蒙袍,地道東北人俊卤。 一個(gè)月前我還...
    沈念sama閱讀 45,497評(píng)論 2 354
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像害幅,于是被迫代替她去往敵國(guó)和親消恍。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,786評(píng)論 2 345

推薦閱讀更多精彩內(nèi)容