3
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 5 years have passed since last update.

ARKit2 UnitySDKを入れた状態でIL2CPPビルドするとエラーが出た時のメモ

Last updated at Posted at 2018-11-30

ARKit2のUnitySDKとARCoreのUnitySDKを入れてマルチプラットフォームな環境を作ってた時につまづいたのでメモです。

IL2CPPのビルドにするとエラーが出る
スクリーンショット 2018-11-30 12.36.22.png
スクリーンショット 2018-11-30 12.42.50.png

Exception: /Applications/Unity/Hub/Editor/2018.2.16f1/Unity.app/Contents/il2cpp/build/il2cppcore/il2cppcore.dll did not run properly!
みたいなエラーが発生しました

ちなみにIL2CPPからMonoにした場合はちゃんとビルドが通る。

解決策
https://bitbucket.org/Unity-Technologies/unity-arkit-plugin/issues/25/android-il2cpp-build-fail
調べたところissueが上がってました。
ARVideoFormat.csの

        #if UNITY_EDITOR
        private static void EnumerateVideoFormats(VideoFormatEnumerator videoFormatEnumerator) {
        }
        #else
        [DllImport("__Internal")]
        private static extern void EnumerateVideoFormats(VideoFormatEnumerator videoFormatEnumerator);
        #endif

ここを

        #if UNITY_EDITOR ||  !UNITY_IOS //こうする
        private static void EnumerateVideoFormats(VideoFormatEnumerator videoFormatEnumerator) {
        }
        #else
        [DllImport("__Internal")]
        private static extern void EnumerateVideoFormats(VideoFormatEnumerator videoFormatEnumerator);
        #endif

このようにプラットフォーム識別を変えてやると解決します。

ちなみに先ほど見たところ最新のコミットで修正対応されているようです。
https://bitbucket.org/Unity-Technologies/unity-arkit-plugin/src/472ea0983dcd12a563e7c47a23d9bb405bdeb2a5/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARVideoFormat.cs?fileviewer=file-view-default
プロジェクトの都合がつくなら最新版持ってきた方が良さそうです。

治ってなかったです(2019年1月現在)
https://bitbucket.org/Unity-Technologies/unity-arkit-plugin/pull-requests/57/fixed-define-in-arvideoformat-to-allow/diff
MRは出てた

3
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
3
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?