Fix DllNotFoundException on unsupported Unity target platforms#49
Closed
Habetdin wants to merge 0 commit intoapple:mainfrom
Habetdin:main
Closed
Fix DllNotFoundException on unsupported Unity target platforms#49Habetdin wants to merge 0 commit intoapple:mainfrom Habetdin:main
Habetdin wants to merge 0 commit intoapple:mainfrom
Habetdin:main
Conversation
Author
|
@AdamSzApple are PRs @ GitHub being monitored? Or just the ones sent via Apple Feedback Assistant? |
pull bot
pushed a commit
to 16CentAstrology/unityplugins
that referenced
this pull request
Apr 6, 2025
|
Hello @AdamSzApple Many users (including me) are getting this issue, so it would be great if this PR can be merged so it's fixed to all of us and we don't have to manually change the code everytime we want to build the new version. |
|
@Habetdin Did this ever make it into the product? I see it's closed. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
When Apple Unity Plug-Ins are loaded in Unity Editor with target platform that is not supported by the Plug-Ins, Editor produces errors like these:
This issue could be fixed by adding constraints like
UNITY_IOS || UNITY_STANDALONE_OSX || UNITY_TVOS || UNITY_VISIONOS(that's taken from the original code) to the assemblies.Replaces: #42