googlesamples / unity-jar-resolver

Unity plugin which resolves Android & iOS dependencies and performs version management
Other
1.22k stars 339 forks source link

Possible fix for issue (Windows) Fix #498 #500

Closed paulinon closed 2 years ago

paulinon commented 2 years ago

After a bit of research, it appears that the behavior reported by the developer is working as intended. The Path.Combine method adds a DirectorySeparatorChar if the path does not end with a valid separator character, and a \ is the default character for Windows.

andreimamlay commented 2 years ago

@paulinon While \ is the default character for Windows, it is an invalid character in File URI scheme which is expected in gradle configuration even on Windows platform

https://en.wikipedia.org/wiki/File_URI_scheme

498