게임/Unity3D
[Unity] Google Service Play 에서 ERROR_UI_BUSY 에러 해결법
Binceline
2017. 10. 15. 21:41
참고 : https://github.com/playgameservices/play-games-plugin-for-unity/issues/1914
자꾸 리더보드나 업적 윈도우가 안켜진다.
로그를 확인해 보았더니,
Invoking user callback on game thread
라거나
Received UI callback: ERROR_UI_BUSY
라는 내용이었다.
문제는 androidmanifest.xml 파일에 다음과 같은 내용을 추가로 작성해 줌으로써 해결되었다.
<activity android:name="com.google.games.bridge.NativeBridgeActivity"
android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen" />
정확히 이게 뭔지는 잘 모르겠다. 찾아봐도 안 나오네ㅠ
이유를 모르니까 찝찝하네용.
반응형