Cheers - that got me a lot further
It seems to load the library now but then crashes in the constructor.
Loaded assembly: OpenTK.dll [External]
In mgmain JNI_OnLoad
11-05 15:25:40.900 I/mono( 7611): Stacktrace:
11-05 15:25:40.900 I/mono( 7611):
11-05 15:25:40.900 I/mono( 7611): at
OK, I just saw the opentk sources that OpenTK.dll actually references
"openal32.dll".
http://www.opentk.com/files/doc/_a_l_8cs_source.html
So you will have to rename those *.so files to the same i.e. libopenal32.so.
Dllmap is (to my understanding) not supported so you can't use it:
http://mono-f
Thanks. I think I’ve added it properly.. I see this during build now:
NativeLibraries:
openallibs\armeabi\libopenal.so
openallibs\armeabi-v7a\libopenal.so
openallibs\x86\libopenal.so
but I still get ‘System.DllNotFoundException: openal32.dll’. how do I point
openal32.dll t
Hi,
You can do that by adding those *.so files to your project and setting
Build Action to AndroidNativeLibrary for each. For details:
http://docs.xamarin.com/Android/Guides/Advanced_Topics/Using_Native_Libraries
Atsushi Eno
l0nestar wrote:
Hi,
I've seen on this forum that OpenAl doesnt wor