為您解碼網(wǎng)站建設(shè)的點點滴滴
發(fā)表日期:2018-10 文章編輯:小燈 瀏覽次數(shù):1508
在Flutter官方只提供了4中CPU架構(gòu)的so庫,armeabi-v7a、arm64-v8a、x86和x86-64,其中x86系列只支持Debug模式,沒有提供armeabi架構(gòu)的庫,在目前多數(shù)app使用的大量sdk都只提供了armeabi架構(gòu)的庫,因此開發(fā)者想到的一種方案是對engine進行修改構(gòu)建。
操作系統(tǒng),IDE,git等這些就不說了,重點安裝下depot_tools(git的擴展)
以mac為例:
下載
$ git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git
配置depot_tools環(huán)境變量?
$ export PATH=$PATH:/你的下載目錄/depot_tools
1 ?新建文件目錄,建議命名engine,在engine目錄下創(chuàng)建 .gclient文件,如下配置編輯到.gclient里
其中<your_name_here> 用你的 GitHub賬號名稱
2 ?cd engine
3 ?gclient sync (這個命令獲取flutter依賴的源碼,它會自動運行g(shù)it clone和其他命令)
4 ?cd src/flutter(其中src/flutter文件是通過gclient syn命令生成的)
5 ?git remote add upstream git@github.com:flutter/engine.git
6 cd ..
7 brew install ant?
Android (cross-compiling交叉編譯)
以下命名沒有特別說明 當前目錄是src
1 git pull upstream master ( 進入src/flutter更新flutter engine)
2 gclinet sync
3 準備構(gòu)建文件
./flutter/tools/gn --android --unoptimized ? (為device-side executables)
./flutter/tools/gn --android --android-cpu x86 --unoptimized ? ? (為 x86模擬器)
./flutter/tools/gn --android --android-cpu x64 --unoptimized ( 為x64 模擬器)
./flutter/tools/gn --unoptimized (為host-side executables)
4 構(gòu)建可執(zhí)行文件
ninja -C out/android_debug_unopt ? (為device-side executables)
ninja -C out/android_debug_unopt_x86(為 x86模擬器)
ninja -C out/android_debug_unopt_x64?( 為x64 模擬器)
ninja -C out/host_debug_unopt?(為host-side executables)
這些命令可以組合,比如?ninja -C out/android_debug_unopt && ninja -C out/host_debug_unopt
編譯完成后可以在?out/android_debug_unopt 一系列目錄下找到 flutter.jar文件
修改源碼構(gòu)建支持arm架構(gòu)參考?https://github.com/flutter/engine/wiki/Android-Builds-Supporting-armeabi
官方文章:https://github.com/flutter/engine/blob/master/CONTRIBUTING.md
日期:2018-10 瀏覽次數(shù):7363
日期:2018-12 瀏覽次數(shù):4433
日期:2018-07 瀏覽次數(shù):4970
日期:2018-12 瀏覽次數(shù):4265
日期:2018-09 瀏覽次數(shù):5607
日期:2018-12 瀏覽次數(shù):10022
日期:2018-11 瀏覽次數(shù):4911
日期:2018-07 瀏覽次數(shù):4678
日期:2018-05 瀏覽次數(shù):4961
日期:2018-12 瀏覽次數(shù):4410
日期:2018-10 瀏覽次數(shù):5234
日期:2018-12 瀏覽次數(shù):6310
日期:2018-11 瀏覽次數(shù):4567
日期:2018-08 瀏覽次數(shù):4690
日期:2018-11 瀏覽次數(shù):12757
日期:2018-09 瀏覽次數(shù):5681
日期:2018-12 瀏覽次數(shù):4938
日期:2018-10 瀏覽次數(shù):4277
日期:2018-11 瀏覽次數(shù):4627
日期:2018-12 瀏覽次數(shù):6158
日期:2018-06 瀏覽次數(shù):4103
日期:2018-08 瀏覽次數(shù):5549
日期:2018-10 瀏覽次數(shù):4546
日期:2018-12 瀏覽次數(shù):4632
日期:2018-07 瀏覽次數(shù):4459
日期:2018-12 瀏覽次數(shù):4610
日期:2018-06 瀏覽次數(shù):4490
日期:2018-11 瀏覽次數(shù):4467
日期:2018-12 瀏覽次數(shù):4353
日期:2018-12 瀏覽次數(shù):5368
Copyright ? 2013-2018 Tadeng NetWork Technology Co., LTD. All Rights Reserved.