build: rename native audio library from radio to dsp

This commit is contained in:
2026-04-06 15:16:41 +02:00
parent bc38742eae
commit 12445a3918
3 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ project("radio")
# used in the AndroidManifest.xml file.
add_library(${CMAKE_PROJECT_NAME} SHARED
# List C/C++ source files with relative paths to this CMakeLists.txt.
radio.cpp)
dsp.cpp)
# Specifies libraries CMake should link to your target library. You
# can link libraries from various origins, such as libraries defined in this
@@ -14,7 +14,7 @@ class NativeAudioProcessor : BaseAudioProcessor() {
companion object {
init {
System.loadLibrary("radio")
System.loadLibrary("dsp")
}
}