Hi Pierre-Marie,
after some years I'm trying to revive the build environment for a Unity-based ARKit project, using a current SDK and the newest version of your tooling.
Now I'm facing the issue of failed linking:
```
+ [arm64] Linking UnityFramework...
Undefined symbols for architecture arm64:
"_objc_msgSend$sharedApplication", referenced from:
ARKitXRCameraProvider::TryGetFrame(UnityXRCameraParams const&, UnityXRCameraFrame*) in libUnityARKit.a(ARKitXRCameraProvider.o)
_UnityARKit_HumanBodyProvider_AcquireHumanBodyPose2DJoints in libUnityARKit.a(ARKitXRHumanBodyProvider.o)
_UnityARKit_Raycast_AcquireHitResults in libUnityARKit.a(RaycastProvider-870c0896623e1f736d4cb8b8f1980209.o)
ARKitXRInputProvider::GetOrientedDevicePose(simd_float4x4) in libUnityARKit.a(ARKitXRInputProvider.o)
[... many similar errors related to libUnityARKIT.a ...]
ld: 362 symbol(s) not found for architecture arm64
```
I've added the frameworks: `-framework ARKit -framework Metal`
because of these lines inside the Info.plist:
```
<array>
<string>arm64</string>
<string>metal</string>
<string>arkit</string>
</array>
```
But this is guess work only.
Can you help me figuring out why this build fails and more importantly help me to help myself the next time: How do I know what frameworks and other possible flags my project needs?
Cheers