Flutter 使用Permission.microphone.request().isGranted ,申请麦克风使用权限失败

马泓
2023-12-01

最近在项目中使用 permission_handler 这个组件中的

Permission.microphone.request().isGranted

方法申请麦克风的使用权限时,在Android上可以实现,但是在iOS下会遇到失败的情况。解决方法如下:

  1. 在Podfile文件中添加如下内容:
	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['GCC_PREPROCESSOR_DEFINITIONS'] ||= [
  	    '$(inherited)',
      	'PERMISSION_MICROPHONE=1',
    ]
    end
end
end
  1. 执行 pod install
 类似资料: