I have Newtonsoft json package v2.0.1 in my project. I want to use Remote Config package, and as i import it a conflict occurs:
This is due to Remote Config having Newtonfost Json v2.0.0 as a dependency package, understandable.
I removed Newtonsoft Json v2.0.1 from my project, the error in editor went away, but
When i launch and play my game on the phone (Android), json files stopped themselves from parsing with an exception (see below).
My guess is that the problem lays in Newtonsoft Json version change (from 2.0.1 to 2.0.0). How can i bypass this?
What i’ve tried:
- Use newer version of Remote Config (but each new version uses Newtonsoft Json v2.0.0 as a dependency)
- Somehow to redirect Remote Config to use Newtonsoft Json v2.0.1 (From this thread, though not sure i did everything right)