본문 바로가기
개발/Unity

유니티 Exception: Field currentActivity or type signature not found 해결법

by SPNK 2024. 3. 14.
반응형

오류 내용

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용 Google 패키지 살펴보기 | Google for Developers 이 페이지는 Cloud Translation API를 통해 번역되었습니다. Unity용 Google 패키지 살펴보기 컬렉션을 사용해 정리하기 내 환경설정을 기준으

parksh3641.tistory.com

 

반응형

댓글