-
[Flutter] PlatformException(null-error, Host platform returned null value for non-null return value., null, null). 에러 해결Memo/Dart & Flutter 2024. 2. 5. 13:22
- 24.02.12.
본 문제는 잘못된 경로에 Firebase SDK 플러그인을 추가하여 발생하는 에러와 관련이 있습니다.
'plugins {} blocks' 에러가 발생하는 경우,
google-services를 classpath로 변경하여 적용하지 마시고 아래 게시물을 참조하시기 바랍니다.
https://l22hs.tistory.com/59⚠️ 문제
Firebase를 연동하기 위해 작성한 main 메소드의 'await Firebase.initializeApp()' 메소드를 실행하는 과정에서
아래와 같은 에러와 함께 애뮬레이터에서는 플러터 로고만 출력되고 앱이 실행되지 않았다.
[ERROR:flutter/runtime/dart_vm_initializer.cc(41)] Unhandled Exception: PlatformException(null-error, Host platform returned null value for non-null return value., null, null)
💡원인
google-services 4.4.0 버전 이상부터는 Firebase와 연동하기 위해서 Firebase CLI를 통해 추가적인 설정이 필요하였다.
✅ 해결
첫 번째 방법. google-services 버전 낮추기
안드로이드 수준의 build.gradle 파일에서 아래와 같이 버전을 '4.3.15'으로 수정해 주면 해결할 수 있다.
dependencies { classpath "com.google.gms:google-services:4.3.15" }
두 번째 방법. Firebase CLI를 통해 추가 설정해 주기
google-services 4.4.0 버전 이상을 사용하려면 Flutter CLI를 설치하고 Flutter 앱에 Firebase를 추가하는 과정이 필요하다.
Flutter 앱에 Firebase 추가
의견 보내기 컬렉션을 사용해 정리하기 내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요. Flutter 앱에 Firebase 추가 plat_ios plat_android plat_web iOS+ Android 웹 기본 요건 아직 Flutter 앱이 없다면
firebase.google.com
🔗 참고 자료
FirebaseCloudMessaging : PlatformException (PlatformException(null-error, Host platform returned null value for non-null return
I'm trying to send notifications from an Node.js API to a Flutter application. First, I want to make my application able to receive notifications from Firebase. But, when I initializeApp, I got an ...
stackoverflow.com
await Firebase.initializeApp() 에서 안넘어갑니다 ㅠ - 인프런
디버그 콘솔 문구는 아래와 같습니다.E/flutter ( 8209): [ERROR:flutter/runtime/dart_vm_initializer.cc(41)] Unhandled Exception: PlatformException(null-error, Host platfo...
www.inflearn.com
'Memo > Dart & Flutter' 카테고리의 다른 글
[Flutter] json 데이터 한글 깨짐 현상. 해결 방법 (0) 2024.02.22 [Firebase] android, plugins {} block 에러 해결 (0) 2024.02.12 [Flutter] App requires Multidex support. 에러 해결 (0) 2024.02.04 [Flutter] Your project requires a newer version of the Kotlin Gradle plugin. 에러 해결 (0) 2024.02.04 [Flutter] SnackBar와 Toast 차이점 (0) 2024.01.15