반응형
오류 내용
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();
}
인앱 업데이트 통합 방법
반응형