Windows version: 11
Builder version: 3.54
iOS SDK version: Xcode 14.2
Unity version: 2022.2.1f1
So, this is very likely not IOS Project Builder's problem, but I am using an asset from the Unity store named Voxelbusters Cross Platform Native Plugins (it does Cloud Save etc.)
I used to use this a couple years back with older Unity versions and it worked fine with IOS Project Builder.
Now when I build in Unity 2022.2 with IOS Project builder I get a link error (even on a fresh project with just the above asset) where the linker can't seem to find the asset's native libraries.
To narrow things down, I made a clean install of Unity 2019.4 and made a fresh project, and that one links just fine.
Failure log (Unity 2022.2): https://pastebin.com/xHc2Vw5V
Success log (Unity 2019.4): https://pastebin.com/2HXviMcj
For some reason, the linker is not linking the asset's library. I looked at the .asmdef files but they do have IOS checked, and otherwise look the same in both unity versions.
The main difference I've noticed is that in Unity 2022 the manifest.json has these listed as a scoped registry, like this:
“scopedRegistries": [
{
"name": "npmjs",
"url": "https://registry.npmjs.org/",
"scopes": [
"com.voxelbusters.corelibrary",
"com.voxelbusters.corelibrary.nativeplugins",
"com.voxelbusters.parser”
]
}
]
where as in Unity 2019 it doesn't put references to this library in the manifest. Unfortunately, Unity 2022 doesn't like it if I just delete those lines out of the manifest to make it look like 2019's manifest.
Is there some issue I should be aware of with scoped registries, or some way I can tell the Unity compiler/IOS Project Builder "You really need to link this".