Steps to Reproduce
- Build a simple .net standard library with a Greeting method.
- Run embeddinator with the following command
Embeddinator-4000.exe bin\Release\ClassLibrary.dll --gen=Java --platform=Android --outdir=androidoutput -c
- Import the generated AAR file into Android Studio
- Add the newly generated project as dependency
implementation project(':ClassLibrary')
- Run the project and deploy it to your Android phone
Expected Behavior
App should start and methods from the AAR should be useable in Java code.
Actual Behavior
Application is crashing during the start because libmonosgen-2.0.so could not be found.
A/monodroid: cannot find libmonosgen-2.0.so in app_libdir: /data/app/com.example.myapplication-ASOprlzzZzqQRUEvuPcnfQ==/lib/arm64 nor in previously printed locations.
Do you have a shared runtime build of your app with AndroidManifest.xml android:minSdkVersion < 10 while running on a 64-bit Android 5.0 target? This combination is not supported.
Please either set android:minSdkVersion >= 10 or use a build without the shared runtime (like default Release configuration).
Environment
OS: Windows 10 - 1809
Visual Studio 2019
Embeddinator-4000 version 0.4.0 via nuget
CompileSdkVersion: 30
BuildToolsVersion "30.0.2"
NDKVersion: R21
Did I miss something during setting up the project in Android Studio?
Thank you in advance.