Jump to content

Working change to get the last SDK working with Unity 2019.1+


demonixis

Recommended Posts

Hello,

The SDK is not compatible with Unity 2019, but you can make it work very easily. Open the file Plugins/BuildCheck.cs, and change that line (line 186) :

if (Application.unityVersion.StartsWith("2017.") || Application.unityVersion.StartsWith("2018."))

by

if (Application.unityVersion.StartsWith("2017.") || Application.unityVersion.StartsWith("2018.") || Application.unityVersion.StartsWith("2019."))

Your application is not working with all versions of Unity 2019, including beta!

Cheers

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...