iOS_Flutter_Hybrid_Project
iOS_Flutter_Hybrid_Project copied to clipboard
iOS Flutter Hybrid Project
将 flutter app 通过 pod 导入到 工程 Analyzing dependencies **[!] No podspec found for `Flutter` in `../my_flutter/.build_ios/debug/product/Flutter`** [!] Automatically assigning platform `iOS` with version `11.4` on target `my_native` because no...
flutter build ios --release 改为 flutter build ios --release --no-codesign
作者你好, 我在`build_ios.sh`脚本下发现了如下一行 ``` PRODUCT_APP_PATH="${PRODUCT_PATH}/Flutter" ``` 导致只会上传`Flutter`的引擎和主体代码到仓库上,因此在`Podfile`指定`release`时,也只是下载了`Flutter`的引擎和主体的`pod`库。 `Flutter`插件的库应该如何加入到`Podfile`中才好呢? 由于插件部分的相对稳定性,是不是应该手动在`Podfile`中进行添加?