Hey guys!
I've got this problem, after updating Unity it is appeared an error, that previously there was not: "The name 'Unzip' does not exist in the current context (CS0103) (Assembly-CSharp-Editor)".
I can't solve the problem: I have uninstall and installed again Unity, I installed Android Studio to have SDK tools, I have clicked "reimport" on Vuforia folder and I have restarted Unity but the error persists.
Can you help me? It is very important!
Thanks!
I am New to Vuforia and Unity, I am studying 6th Std SRM public School, Chennai.I am trying to execute videoplayback sample, but i couldnt,
After long search I found this solution, Its worked for me.
Solutions
1, double-click to open the script location, find the location, put the return Unzip.Unzip (path, fileNameinZip);
2. Change to return Unzipper.Instance.UnzipFile (path, fileNameinZip);
Sample Part Code
public Stream UnzipFile(string path, string fileNameinZip)
{
#if !EXCLUDE_JAVASCRIPT
return Unzipper.Instance.UnzipFile(path, fileNameinZip);
#else
return null;
2, Save file. I hope it will solve the problem