Reputation: 4343
I have come across the Superpowered SDK for processing audio in android. I am new to NDK and online there is little to no documentation about how to configure and use Superpowered, which is a shame for such a well made library.
Can someone explain me how to configure it properly?
All I did as of now is installing the NDK.
Upvotes: 1
Views: 1584
Reputation: 46
I am using Qt5 to build c++ apps for Android, using Android NDK.
This may be a helpful for some, but to include the Superpowered libs, I did this in the Project.pro file, which works.
LIBS += -lOpenSLES
LIBS += C:\Qt\Your_Project\Superpowered\libSuperpoweredAndroidarmeabi-v7a.a
Upvotes: 1
Reputation: 1329
I recommend to start with one of the Android example projects of the Superpowered SDK. Set the 2 paths in local.properties and the project will build fine. Also read the README, which explains these steps and even more detail.
Upvotes: 1