Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Game Development
  4. How to build OpenAL-Soft and set up it in Qt Creator for Android
Forum Updated to NodeBB v4.3 + New Features

How to build OpenAL-Soft and set up it in Qt Creator for Android

Scheduled Pinned Locked Moved Solved Game Development
27 Posts 4 Posters 5.3k Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • JoeCFDJ JoeCFD

    @8Observer8 I guess you have a different version of qt creator. I do not know yours.

    8Observer88 Offline
    8Observer88 Offline
    8Observer8
    wrote on last edited by
    #18

    @JoeCFD My version of Qt Creator is 7.0.0. But I use pure NDK from the console to build OpenAL-Soft from sources. How do you know that OpenAL-Soft doesn't support Android 7?

    7b149c89-bd99-4cc3-a28e-7e8da9dc73d8-image.png

    JoeCFDJ 1 Reply Last reply
    0
    • 8Observer88 8Observer8

      @JoeCFD My version of Qt Creator is 7.0.0. But I use pure NDK from the console to build OpenAL-Soft from sources. How do you know that OpenAL-Soft doesn't support Android 7?

      7b149c89-bd99-4cc3-a28e-7e8da9dc73d8-image.png

      JoeCFDJ Offline
      JoeCFDJ Offline
      JoeCFD
      wrote on last edited by JoeCFD
      #19

      @8Observer8 You build OpenAL-Soft for Android 7. I did not say it does not support Android 7.
      Instead you need JDK 11 to build C++ apps for Android 7. But in your settings, JDK 17 is used.

      8Observer88 1 Reply Last reply
      0
      • JoeCFDJ JoeCFD

        @8Observer8 You build OpenAL-Soft for Android 7. I did not say it does not support Android 7.
        Instead you need JDK 11 to build C++ apps for Android 7. But in your settings, JDK 17 is used.

        8Observer88 Offline
        8Observer88 Offline
        8Observer8
        wrote on last edited by 8Observer8
        #20

        @JoeCFD said in How to install OpenAL-Soft for Android in Qt Creator by copying OpenAL-Soft sources into a project:

        Instead you need JDK 11 to build C++ apps for Android 7. But in your settings, JDK 17 is used.

        I tried to run apps with Box2D and Bullet Physics on real smartphone Redmi 4x with Android 7. I use JDK 17 and it works. I tried to run an example with QMediaPlayer on my smartphone and it plays music. I think I found a solution. I should try to use Bass Audio Library for 3D sounds on Android. It's is too difficult to add OpenAL-Soft directly with sources. Now I know this information:

        Note that OpenAL is LGPL-licensed. Which means you need to release the source to your application if you make it part of your application.

        JoeCFDJ 1 Reply Last reply
        0
        • 8Observer88 8Observer8

          @JoeCFD said in How to install OpenAL-Soft for Android in Qt Creator by copying OpenAL-Soft sources into a project:

          Instead you need JDK 11 to build C++ apps for Android 7. But in your settings, JDK 17 is used.

          I tried to run apps with Box2D and Bullet Physics on real smartphone Redmi 4x with Android 7. I use JDK 17 and it works. I tried to run an example with QMediaPlayer on my smartphone and it plays music. I think I found a solution. I should try to use Bass Audio Library for 3D sounds on Android. It's is too difficult to add OpenAL-Soft directly with sources. Now I know this information:

          Note that OpenAL is LGPL-licensed. Which means you need to release the source to your application if you make it part of your application.

          JoeCFDJ Offline
          JoeCFDJ Offline
          JoeCFD
          wrote on last edited by
          #21

          @8Observer8 Great it works for you with JDK 17. You can still build OpenAL-Soft to dynamic lib and add it to your app for Android. It does not violate LGPL-license.

          8Observer88 1 Reply Last reply
          0
          • JoeCFDJ JoeCFD

            @8Observer8 Great it works for you with JDK 17. You can still build OpenAL-Soft to dynamic lib and add it to your app for Android. It does not violate LGPL-license.

            8Observer88 Offline
            8Observer88 Offline
            8Observer8
            wrote on last edited by
            #22

            @JoeCFD what do you think about this? https://github.com/AerialX/openal-soft-android How to build it?

            JoeCFDJ 1 Reply Last reply
            0
            • 8Observer88 Offline
              8Observer88 Offline
              8Observer8
              wrote on last edited by
              #23

              Does anyone have compiled libraries (.so) of OpenAL-Soft for Android? I mean armeabi-v7a and x86_64. I can't find step by step instructions.

              1 Reply Last reply
              0
              • 8Observer88 8Observer8

                @JoeCFD what do you think about this? https://github.com/AerialX/openal-soft-android How to build it?

                JoeCFDJ Offline
                JoeCFDJ Offline
                JoeCFD
                wrote on last edited by JoeCFD
                #24

                @8Observer8 you may need to change CMakefile or create a pro file for Android. And build it for Android. It is just another project.

                JoeCFDJ 1 Reply Last reply
                0
                • JoeCFDJ JoeCFD

                  @8Observer8 you may need to change CMakefile or create a pro file for Android. And build it for Android. It is just another project.

                  JoeCFDJ Offline
                  JoeCFDJ Offline
                  JoeCFD
                  wrote on last edited by JoeCFD
                  #25

                  @JoeCFD A lazy way to do it is that you find out all settings(flags and libs) for Android build in the Makefile(made from pro or cmakefile) of your Android project. Then, you open CMakefile of OpenAL-Soft with cmake-gui and add(or replace) all these settings to the corresponding locations. Do make and you will get the right lib for Android. I did it once for some testing and it worked.

                  Sure it is better to do it properly. It should not be that hard.

                  1 Reply Last reply
                  0
                  • 8Observer88 Offline
                    8Observer88 Offline
                    8Observer8
                    wrote on last edited by 8Observer8
                    #26

                    I found the simples way! I just download these sources: https://github.com/AerialX/openal-soft-android and built it using CMake. The libopenal.so library was created. I created the "Play" button. I built my first app that plays music using OpenAL! It works on my smartphone! It's cool!

                    My step-by-step guide for Qt 6.2.4 MinGW 64-bit:

                    • Download these sources: https://github.com/AerialX/openal-soft-android
                    • Download CMake (add it to the Path variable): https://cmake.org/download/
                    • Go to openal-soft-android from the console (cd openal-soft-android)
                    • Copy the next commands to the console (don't forget to change the path to your android.toolchain.cmake)

                    cmake -G "MinGW Makefiles" -S . -B ./build -DCMAKE_TOOLCHAIN_FILE=E:\AppData\Android\SDK\ndk\22.1.7171670\build\cmake\android.toolchain.cmake -DANDROID_ABI=armeabi-v7a -DANDROID_NATIVE_API_LEVEL=29

                    cmake --build ./build -j 4

                    The libopenal.so will be created. Create a new Qt project. Create the jniLibs/armeabi-v7a folder inside of your Qt project. And copy libopenal.so inside of jniLibs/armeabi-v7a.

                    Create the libs\openal-soft\include folder inside of your Qt project and copy the AL folder there.

                    Add these settings to your pro-file:

                    INCLUDEPATH += $$PWD/libs/openal-soft/include
                    
                    contains(ANDROID_TARGET_ARCH, armeabi-v7a)
                    {
                        ANDROID_EXTRA_LIBS += $$PWD/jniLibs/armeabi-v7a/libopenal.so
                    }
                    

                    Added 2/25/2024

                    I use these settings to run on Windows, real device, and Android Emulator:

                    CONFIG("windows") {
                        INCLUDEPATH += $$PWD/libs/openal-soft-desktop-1.23.1/include
                        LIBS += -L$$PWD/libs/openal-soft-desktop-1.23.1/lib/x64
                        LIBS += -lOpenAL32.dll
                    }
                    
                    CONFIG("armeabi-v7a") {
                        INCLUDEPATH += $$PWD/libs/openal-soft-android/include
                        contains(ANDROID_TARGET_ARCH, armeabi-v7a)
                        {
                            ANDROID_EXTRA_LIBS += $$PWD/jniLibs/armeabi-v7a/libopenal.so
                        }
                    }
                    
                    CONFIG("x86") {
                        INCLUDEPATH += $$PWD/libs/openal-soft-android/include
                        contains(ANDROID_TARGET_ARCH, x86)
                        {
                            ANDROID_EXTRA_LIBS += $$PWD/jniLibs/x86/libopenal.so
                        }
                    }
                    
                    1 Reply Last reply
                    0
                    • 8Observer88 8Observer8 has marked this topic as solved on
                    • F Offline
                      F Offline
                      florbermudez
                      wrote on last edited by
                      #27
                      This post is deleted!
                      1 Reply Last reply
                      0
                      • 8Observer88 8Observer8 has marked this topic as unsolved on
                      • 8Observer88 8Observer8 has marked this topic as solved on

                      • Login

                      • Login or register to search.
                      • First post
                        Last post
                      0
                      • Categories
                      • Recent
                      • Tags
                      • Popular
                      • Users
                      • Groups
                      • Search
                      • Get Qt Extensions
                      • Unsolved