The type or namespace name 'SmartTerrain' could not be found (are you missing a using directive or an assembly reference?)
The type or namespace name 'PositionalDeviceTracker' could not be found (are you missing a using directive or an assembly reference?)
These errors weren't in version 9 but in version 10 they are affecting project flow please help me
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using System;
using Vuforia;
public class ARManager : MonoBehaviour
{
public PlaneFinderBehaviour finder;
SmartTerrain smartTerrain;
PositionalDeviceTracker positionalDeviceTracker;
...........
tl;dr: These types don't exist anymore since they are not needed anymore.
I would start at Vuforia - Migration Guide for Vuforia Engine Unity Projects.
In general for any software library it is not unlikely that things and the API change between major versions - indeed such a breaking change is one of the main reasons to release a new major version at all!
So read up what to use instead or what changed in the API => what you have to change in your code to adopt - or stick to the version 9 if it worked for you and you don't need the newest features ;)
In your specific cases
and