본문 바로가기

관리 메뉴

[Unity] 2020.1x버전 이상 firebase빌드 문제 본문

프로그래밍/ㄴ이슈

[Unity] 2020.1x버전 이상 firebase빌드 문제

최갓 2020. 8. 31. 11:13
반응형

2020.1.3f버전으로 유니티를 업그레이드 하고 나니 다음과 같은 파이어 베이스 에러 로그가 발생했다

 

Unity Failed to read Firebase options from the app's resources. Either make sure google-services.json is included in your build or specify options explicitly.
Firebase app creation failed

 

빌드 까지는 문제없이 진행되나, 파이어베이스 인스턴스를 생성할 때 

위와 같은 문제가 발생한다.

 

유니티 2020과 신규 firebase버전이 충돌하며 발생하는 문제같아 보인다.

특정 경로에 googleservices.xml파일을 생성하지 못하거나, 해당 경로에서 파일을 읽어올 수 없는 문제인 것으로 유추된다.

 

github.com/firebase/quickstart-unity/issues/596

 

Failed to read Firebase options from the app's resources. · Issue #596 · firebase/quickstart-unity

Please fill in the following fields: Unity editor version: 2019.3.06f Firebase Unity SDK version: 6.6.0 Firebase plugins in use (Auth, Database, etc.):https://assetstore.unity.com/packages/tools/ne...

github.com

위 이슈를 보면 maintemplate.gradle에 해당 경로를 직접 추가하여 주는 처리를 하지만,

위와 같이 처리했을 때 AndroidX R8관련 에러가 발생하게 된다.

 

현재 해결방법은 없이 unity 2019.3.15f버전으로 다운그레이드 하였다

반응형
Comments