Unity3D

Unity IAP Error - ProductCatalog could not be found

DragonTory 2021. 12. 3. 16:31
반응형

유니티 IAP를 적용 하여 개발 중에 

코드를 깃에 올리고 다른 PC에서

Pull 한 다음에 유니티 에러가 발생 했다. 

Unity IAP이 잘 되던 것이 깃에 올린 후에 문제가 발생 해서 찾아 봤다.

Assets/Plugins/UnityPurchasing/script/IAPButton.cs(164,12): error CS0246: The type or namespace name `ProductCatalog' could not be found. Are you missing an assembly reference?

 

문제는 .gitignore 파일에 

  **/Bin

부분을 무시 하던게 문제를 일으켰다. 

Unity IAP는 다음 폴더를 포함 하고 있다. 

Assets\Plugins\UnityPurchasing\Bin

결국 이 폴더가 없어서 생긴 문제...

 

.gitignore 에 저 부분을 제외 하고

다시 Push 하고 Pull 하니 에러가 사라졌다. 

 

반응형