오류 내용 Exception: Field currentActivity or type signature not found.. 유니티 프로젝트에 인앱 자동 업데이트 (AppUpdateManager) 통합 후 빌드하면 튕기는 현상 발생 해결 방법 시작 지점에 yield return new WaitForSeconds(0.5f); 를 넣어서 딜레이를 줍니다.
IEnumerator CheckForUpdate() { yield return new WaitForSeconds(0.5f); AppUpdateManager appUpdateManager = new AppUpdateManager(); } 인앱 업데이트 통합 방법 유니티 C# 서버 없이 인앱 업데이트 간단 구현 Play Update SDK 다운로드 Unity용 .....