We have a class library (C++) that is compiled into a dynamic library (.dll, .so etc.) on various platforms. The dynamic library is then loaded using P/Invoke from .NET including a .NET Standard 2.1 assembly. Now, we want to do the same on iOS. My understanding is that we can compile our C++ code to an iOS .dylib, create a dynamic framework with this .dylib, and somehow consume this .dylib via the framework in the .NET Standard 2.1 assembly. Is there a way for this, or such a combination won't work?
How to use iOS dynamic framework from .NET Standard assembly in Xamarin.iOS
245 Views Asked by Eugene Mayevski 'Callback At
0
There are 0 best solutions below
Related Questions in XAMARIN.IOS
- Xamarin Table View Crash
- Hiding Elements in a Monotouch Dialog Section - Height does not change
- Custom UIRefreshControl animation
- How to use research Kit framework in Xamarin
- Convert Objective C to Monotouch (Rounded Table Grouped)
- UITableViewCell (MTD) rectangle style cell
- Offline authentication best practices in Xamarin
- How to add Checkbox in Xamarin.Forms in Xaml file?
- How do you enable stack smashing protection for an iOS app built with Xamarin?
- CLLocation DistanceFrom performance implications
- storyboard not opening in xamarin ios designer
- Can't upload image from Gallery with request.Addfile on iOS
- Methods that use convertPoint:fromLayer implicitly in Xamarin.iOS/MonoTouch
- Xamarin.iOS Linker removes members in class needed for reflection
- Xamarin for iOS: All Controls null in initial view controller
Related Questions in .NET-STANDARD
- NETSTANDARD error Build action 'EmbeddedResource' is not supported by one or more of the project's targets
- Installing .NET Framework package to PCL attempts to install .NET Standard packages
- How can I use Sqlite in a .NET Standard library?
- Cannot convert from type1 to type1 in netstandard error
- NuGet restores/installs/locks invalid dll variant for UWP app
- .Net Standard project : System.Linq.Enumerable class missing
- Code generation with .Net Standard
- How to create a library that targets both .NET 2.0 and .NET Standard?
- Using DynamicObject when multi-targeting in NetStandard
- Installing package that do not support .NetStandard
- Using .net standard 1.5 lib in .net 4.6.2 misses System.Runtime 4.1.0.0
- Alternatives of CompileToMethod in .Net Standard
- IServiceProvider not available in .NET Standard?
- How to setting a model with table don't have any primary key column
- Advantages of netcoreapp2.0 vs netstandard2.0 for a library project
Related Questions in DYLIB
- setuptools.setup can't find dylib library files but they are there
- Change Dylib Version
- MampStack stopped working after upgrading to Yosemite and Xcode 6.3.2
- Statically link OpenSSL in XCode
- cx_Freeze and scipy - missing gfortran library?
- Static linking with libraries with Clang on OS X
- How to link dylib file in C++ builder project
- Python: Import Slycot, symbol not found: _dgesv_
- Adding "${SDK_DIR}/usr/include/libxml2" to Header Search Paths breaks cocoapods
- dylib to dylib pathing on mac osx, how to make rpath work on mac?
- Using a dylib in xcode
- Xcode wont load dylib when running on device
- Mac Excel VBA dylib (gfortran based) file operations fail
- use dynamic library in xcode 6 have error: Library not loaded: /usr/local/lib/xxx.dylib Reason: image not found
- dyld: Library not loaded. Reason : no suitable image found
Related Questions in XAMARIN.IOS-BINDING
- Does Xamarin remove/exclude the simulator architecture of the native library when building for Appstore / Device build?
- Why binding to label's enabled property crashes the app
- How can I debug a "Failed to install" message?
- Singleton Property is always null of the third party framework after doing xamarin ios bindings
- Generate Xamarin.iOS bindings for HERE SDK 4
- Weird 'Native linking failed, undefined Objective-C class' when Xamarin-iOS nuget is generated from Azure Pipeline (but not when it's built locally)
- How do I get Objective Sharpie to recognize framework dependency header paths?
- Xamarin Object Sharpie Obj-C Library Binding why Output huge File?
- Xamarin Embedded content contains Swift code
- Swift library bindings to Xamarin
- Xamarin.iOS Binding project error at runtime
- Scrolldown in ListView using ItemAppearing event skips records in Xamarin.Forms
- After binding using Objective Sharpie Protocol Methods are not getting invoked in xamarin.iOS
- Execute DidRangeBeacons all the time in iOS 15 when user is in the range of beacon
- Xamarin.iOS binding library that depends on FirebaseCore
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?