在fluterr 编译报错
- 然后显示 github.xxxxx 访问超时
处理办法
- pod install 主要是读取 profile 文件
platform :ios, '9.0'
target 'YourAppName' do
use_frameworks!
# 这是安装依赖位置
pod 'SomeDependency'
# 添加其他依赖项...
end
- 想办法 下载到github的文件 方法不表述了
- flutter 的 profile 修改如下
# Uncomment this line to define a global platform for your project
# platform :ios, '11.0'
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
ENV['COCOAPODS_DISABLE_STATS'] = 'true'
project 'Runner', {
'Debug' => :debug,
'Profile' => :release,
'Release' => :release,
}
def flutter_root
generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__)
unless File.exist?(generated_xcode_build_settings_path)
raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first"
end
File.foreach(generated_xcode_build_settings_path) do |line|
matches = line.match(/FLUTTER_ROOT\=(.*)/)
return matches[1].strip if matches
end
raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get"
end
require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root)
flutter_ios_podfile_setup
target 'Runner' do
use_frameworks!
use_modular_headers!
### 核心在这里多个依赖一直添加
pod 'Mux-Stats-AVPlayer', :path => '/Users/jimogangdan/IdeaProjects/mux-stats-sdk-avplayer'
pod 'Mux-Stats-Core', :path => '/Users/jimogangdan/IdeaProjects/stats-sdk-objc'
flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
end
post_install do |installer|
installer.pods_project.targets.each do |target|
flutter_additional_ios_build_settings(target)
end
end
标签:github,end,intsall,build,File,path,pod,flutter
From: https://www.cnblogs.com/guanchaoguo/p/17919377.html