0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

iOSビルドでJson.NETを使おうとするとNotSupportedExceptionが出てしまう

Posted at

Unity で Newtonsoft の Json.NET の dll を直接取り込んで使っていると、Windowsアプリ、Androidなどで問題がなくても、iOSビルドして実行すると NotSupportedException が発生してしまいます。解決する際に参考にした情報を基に、以下にまとめてあります。

対応方法

本家を folk して、PackageManager 経由で Unity に取り込めるように対応してくれているリポジトリがあります。そのリポジトリに向けた設定を Unity に入れることで、iOSビルドでもエラーが出ることなく使用できるようになります。

設定方法

  1. PackageManager でのインストールが 2018.1 からなので、それ以上のバージョンの Unity でないと設定できません。

  2. <project>/Packages/manifest.json に以下設定を足してください。バージョン番号はリポジトリのタグを参考に最新版を設定しておくとよいかと思います。

{
  "scopedRegistries": [
    {
      "name": "Packages from jillejr",
      "url": "https://npm.cloudsmith.io/jillejr/newtonsoft-json-for-unity/",
      "scopes": ["jillejr"]
    }
  ],
  "dependencies": {
    "jillejr.newtonsoft.json-for-unity": "12.0.301",
  }
}

参考

0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?