반응형
퍼미션 핸들러 패키지로 권한을 가져올 때 분명 설정 앱에서는 앱의 대한 알림이 켜져있는데 퍼미션은 계속 Denied로 뜰 때가 있다.
Podfile을 수정해주자. -> 'PERMISSION_NOTIFICATIONS=1', 추가
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['EXCLUDED_ARCHS[sdk=iphonesimulator*]'] = 'arm64 i386'
config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= [
'$(inherited)',
'PERMISSION_PHOTOS=1',
'PERMISSION_MEDIA_LIBRARY=1',
'PERMISSION_NOTIFICATIONS=1',
]
end
end
end
'Flutter' 카테고리의 다른 글
Flutter[플러터] - IOS 스플래쉬 검은화면 제거하기 feat .flutter_native_splash (0) | 2024.07.24 |
---|---|
[Flutter] - 플러터 앱 라이프사이클 감지 didChangeAppLifecycleState을 사용해서 셋팅 앱에서 돌아온 후 알림을 다시 조회해보자! (0) | 2024.07.16 |
[Flutter] 플러터 - 네트워크 상태 감지 connectivity_plus (2) | 2024.07.08 |
[Flutter] 플러터 - IOS - Parse Issue (Xcode): Module 'app_links' not found (0) | 2024.06.29 |
[Flutter] 플러터 - AOS(안드로이드) 네이티브 연동 SMS 자동완성 (0) | 2024.06.12 |