MonoGame / MonoGame.Dependencies

The MonoGame binary dependencies submodule.
38 stars 51 forks source link

Add native librarues for GLES for Android. #103

Closed dellis1972 closed 7 years ago

dellis1972 commented 7 years ago

This is because android-n no longer allows apps to dlopen libraries from the /system/lib. As a result our OpenGL system will not work.

We need to include the native libs in the app using EmbeddedNativeLibrary like we do for OpenGL.

tomspilman commented 7 years ago

Will this result in more issues with Android? Could we ship a wrong library for a particular flavor of Android?

KonajuGames commented 7 years ago

That's what I'm wary of. Are these common binary libraries across all Android versions, or do vendors modify them to suit their devices?

dellis1972 commented 7 years ago

Looks like we don't need this. We just need to remove the user of "/system/lib/libGL.so" style paths in favour of just "libGL.so" etc.