XuweiQT
XuweiQT
_sudo vim /Library/Ruby/Gems/2.6.0/gems/cocoapods-packager-1.5.0/lib/cocoapods-packager/pod_utils.rb_ config.build_settings['CLANG_MODULES_AUTOLINK'] = 'NO' config.build_settings['GCC_GENERATE_DEBUGGING_SYMBOLS'] = 'NO' config.build_settings['EXCLUDED_ARCHS[sdk=iphonesimulator*'] = 'arm64' // add this row
> > @whde You tried, no problem? I tried it, but the hook function won't work. > > I tried #87 and #84, it worked on 14.6 and 15.0 yes....
> 我遇到了同样的问题,但是复现不了它,线上Crash还是在。看如下堆栈: I encountered the same problem, but I can't reproduce it. Online Crash is still there. Look at the following stack: ``` NSInternalInconsistencyException Modifications to the layout engine must...
fix it:将raster线程切换到platform线程,可以解决它 ``` flutter::TaskRunners task_runners(threadLabel.UTF8String, // label fml::MessageLoop::GetCurrent().GetTaskRunner(), // platform rasterToMain ? fml::MessageLoop::GetCurrent().GetTaskRunner() : _threadHost->raster_thread->GetTaskRunner(), // raster to platform thread _threadHost->ui_thread->GetTaskRunner(), // ui _threadHost->io_thread->GetTaskRunner() // io ); ```