yesterday I updated to Unity 5.6.0f3 and installed the Textmesh pro plugin in an existing project that was previously created in Unity 5.5. When I attempt to build the project with UCB it fails with this error:
“error CS0246: The type or namespace name `TMPro’ could not be found. Are you missing an assembly reference?”
I’m able to build the project directly on my android device so it might be an incompatibility problem between the plugin and UCB?
I am using Unity 5.6.I am not able to find the Build a combination option.The build button does not have any arrow beside it either.I check the Build settings too but there does not exist any such option.
I had references to TextMesh Pro in scripts within my plugin folder but had placed TextMeshPro itself outside of plugins. I believe plugins folder is compiled first and thus it couldn’t find the TextMeshPro until I moved it. That or just moving the folder caused the project to clean as other mentioned.
I was seeing this error in the editor, even before compiling. By looking at Visual Studio’s suggested fixes, I learned I needed using TMPro; added to the mix.