Photon Voice (V1) Error in script

Photon Voice Ver.1.16

While importing Photon Voice in unity some scripts throwing error, scripts names are -
  1. PhotonVoiceNetwork.cs
  2. DelayProcessor.cs
  3. photonVoiceRecorder.cs

Cause of Error:

Namespace'' contains a definition conflicting with alias 'Voice'

using Voice = ExitGames.Client.Photon.Voice;

In above line they used Voice which is a predefined type so that variable causing the error.

Fix:

using Voice = ExitGames.Client.Photon.Voice;

using Voice1 = ExitGames.Client.Photon.Voice;

Here i changed Voice to Voice1 so now its not a type.
You need to change that variable wherever it has been used.

Thank You.
This discussion has been closed.