JSON build error
See original GitHub issueDescribe the issue
Build errors:
Assets/Vimeo/Scripts/Player/VimeoPlayer.cs(339,34): error CS0234: The type or namespace name Parse' does not exist in the namespace JSON’. Are you missing an assembly reference?
Assets/Vimeo/Scripts/Recorder/VimeoPublisher.cs(55,42): error CS0234: The type or namespace name Parse' does not exist in the namespace JSON’. Are you missing an assembly reference?
Assets/Vimeo/Scripts/Recorder/VimeoPublisher.cs(129,34): error CS0234: The type or namespace name Parse' does not exist in the namespace JSON’. Are you missing an assembly reference?
Assets/Vimeo/Scripts/Recorder/VimeoPublisher.cs(147,34): error CS0234: The type or namespace name Parse' does not exist in the namespace JSON’. Are you missing an assembly reference?
Assets/Vimeo/Scripts/Services/VimeoUploader.cs(93,37): error CS0234: The type or namespace name Parse' does not exist in the namespace JSON’. Are you missing an assembly reference?
Steps to reproduce the problem
Import package vimeo-0.9.3.unitypackage Build
Unity version
Unity 2017.3.1f1 vimeo-0.9.3.unitypackage
Operating system
Windows 10
Issue Analytics
- State:
- Created 5 years ago
- Comments:7 (7 by maintainers)

Top Related StackOverflow Question
Hi, ok I know why the problem is happening with me only: I have other JSON packages installed in my project (with JSON as a namespace rather than a static class). Still strange that the compiler handles this ambiguity in such a bad way. For this package I guess it would be safer to use an explicit naming Vimeo.SimpleJSON.JSON. Or at least SimpleJSON.JSON.
Fixed in #65 - now in
master. Thank you, @michaelboccara !