ArunJRK

Results 7 comments of ArunJRK

Modify your install section in pod file to config like below ``` post_install do |installer| installer.pods_project.targets.each do |target| flutter_additional_ios_build_settings(target) target.build_configurations.each do |config| config.build_settings['ENABLE_BITCODE'] = 'NO' config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.1' end end...

# Update: This too is not working ## Note The bug was fixed in version 4.3.4 and this solution forces installation of that version. ## Solution If you have podfile...

Looking forward to this. It could entirely change the way we build backends. At least just FastAPI support will be great.

As mentioned in https://github.com/oven-sh/bun/issues/362#issuecomment-1177680128 `bun install --backend=copyfile ` works as temporary fix for macOS external volume folders

> Yes I did. Still I am getting the block_reason:OTHER output. Same issue for me

This solved for me: changed this `from azure.identity.aio import ClientSecretCredential` to `from azure.identity import ClientSecretCredential` The synchronous version of `ClientSecretCredential` is not being a problem.

> What are the consequences of using the synchronous version of `ClientSecretCredential`? It may block some parts of the execution. But in my experience with asyncio, multiprocessing, and threading, the...