Login  Register

JOGL android native libraries

Posted by Pedro on Jun 27, 2018; 10:25am
URL: https://forum.jogamp.org/JOGL-android-native-libraries-tp4038974.html

Hello,

Do you support Android x86 platform?

I found this page while googling:

http://jogamp.org/deployment/maven/org/jogamp/jogl/jogl-all-android/2.3.2/

and I'm a bit confused that they're all pre-pended with 'jogl-all-android-2.3.2' but make mention of windows, macosx, linux too etc.

What would be the full list of platform architectures I could package native libs for in my apk?

e.g. I currently have:

                                                                <artifactItem>
                                                                        <groupId>org.jogamp.jogl</groupId>
                                                                        <artifactId>jogl-all</artifactId>
                                                                        <version>${jogl.android.version}</version>
                                                                        <classifier>natives-android-armv6</classifier>
                                                                        <overWrite>true</overWrite>
                                                                        <outputDirectory>${project.basedir}/src/main/libs/armeabi</outputDirectory>
                                                                        <includes>lib*.so</includes>
                                                                </artifactItem>
                                                                <artifactItem>
                                                                        <groupId>org.jogamp.jogl</groupId>
                                                                        <artifactId>jogl-all</artifactId>
                                                                        <version>${jogl.android.version}</version>
                                                                        <classifier>natives-android-armv6</classifier>
                                                                        <overWrite>true</overWrite>
                                                                        <outputDirectory>${project.basedir}/src/main/libs/armeabi-v7a</outputDirectory>
                                                                        <includes>lib*.so</includes>
                                                                </artifactItem>

my thanks and kind regards,

Pedro.