I’m trying to build an android GUI App but a single line is causing a linker error
if (chooser.browseForFileToOpen()) {
producing this error
E:/___SOURCE_TREE/GHHHHH/threaded async updater demo/threadedAsync/Source/MainComponent.cpp:70: error: undefined reference to ‘juce::FileChooser::browseForFileToOpen(juce::FilePreviewComponent*)’
clang++: error: linker command
does anyone have any suggestions, please? This is working on Win, Mac, IOS
I’m on the develop branch at the tip as of today, Android Studio is 4.1.1
here’s the full error,
Build command failed.
Error while executing process F:\Android\android-sdk\cmake\3.10.2.4988404\bin\ninja.exe with arguments {-C E:___SOURCE_TREE\GHHHHH\threaded async updater demo\threadedAsync\Builds\Android\app.cxx\cmake\debug_Debug\x86 juce_jni}
ninja: Entering directory `E:__SOURCE_TREE\GHHHHH\threaded async updater demo\threadedAsync\Builds\Android\app.cxx\cmake\debug_Debug\x86’
[1/2] Building CXX object CMakeFiles/juce_jni.dir/E/__SOURCE_TREE/GHHHHH/threaded_async_updater_demo/threadedAsync/Source/MainComponent.cpp.o
[2/2] Linking CXX shared library …......\build\intermediates\cmake\debug_Debug\obj\x86\libjuce_jni.so
FAILED: …/…/…/…/build/intermediates/cmake/debug_Debug/obj/x86/libjuce_jni.so
cmd.exe /C "cd . && F:\Android\android-sdk\ndk\21.1.6352462\toolchains\llvm\prebuilt\windows-x86_64\bin\clang++.exe --target=i686-none-linux-android28 --gcc-toolchain=F:/Android/android-sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/windows-x86_64 --sysroot=F:/Android/android-sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/windows-x86_64/sysroot -fPIC -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fexceptions -frtti -O0 -fno-limit-debug-info -O0 -Wl,–exclude-libs,libgcc.a -Wl,–exclude-libs,libgcc_real.a -Wl,–exclude-libs,libatomic.a -static-libstdc++ -Wl,–build-id -Wl,–fatal-warnings -Wl,–no-undefined -Qunused-arguments -shared -Wl,-soname,libjuce_jni.so -o …......\build\intermediates\cmake\debug_Debug\obj\x86\libjuce_jni.so CMakeFiles/juce_jni.dir/E/__SOURCE_TREE/GHHHHH/threaded_async_updater_demo/threadedAsync/Source/Main.cpp.o CMakeFiles/juce_jni.dir/E/__SOURCE_TREE/GHHHHH/threaded_async_updater_demo/threadedAsync/Source/MainComponent.cpp.o CMakeFiles/juce_jni.dir/0ef0b871368e359f3dcefd3c2e306cf3/threadedAsync/JuceLibraryCode/include_juce_audio_basics.cpp.o CMakeFiles/juce_jni.dir/0ef0b871368e359f3dcefd3c2e306cf3/threadedAsync/JuceLibraryCode/include_juce_audio_devices.cpp.o CMakeFiles/juce_jni.dir/0ef0b871368e359f3dcefd3c2e306cf3/threadedAsync/JuceLibraryCode/include_juce_audio_formats.cpp.o CMakeFiles/juce_jni.dir/0ef0b871368e359f3dcefd3c2e306cf3/threadedAsync/JuceLibraryCode/include_juce_audio_processors.cpp.o CMakeFiles/juce_jni.dir/E/__SOURCE_TREE/GHHHHH/threaded_async_updater_demo/threadedAsync/JuceLibraryCode/include_juce_audio_utils.cpp.o CMakeFiles/juce_jni.dir/E/__SOURCE_TREE/GHHHHH/threaded_async_updater_demo/threadedAsync/JuceLibraryCode/include_juce_core.cpp.o CMakeFiles/juce_jni.dir/0ef0b871368e359f3dcefd3c2e306cf3/threadedAsync/JuceLibraryCode/include_juce_data_structures.cpp.o CMakeFiles/juce_jni.dir/E/__SOURCE_TREE/GHHHHH/threaded_async_updater_demo/threadedAsync/JuceLibraryCode/include_juce_events.cpp.o CMakeFiles/juce_jni.dir/E/__SOURCE_TREE/GHHHHH/threaded_async_updater_demo/threadedAsync/JuceLibraryCode/include_juce_graphics.cpp.o CMakeFiles/juce_jni.dir/E/__SOURCE_TREE/GHHHHH/threaded_async_updater_demo/threadedAsync/JuceLibraryCode/include_juce_gui_basics.cpp.o CMakeFiles/juce_jni.dir/E/___SOURCE_TREE/GHHHHH/threaded_async_updater_demo/threadedAsync/JuceLibraryCode/include_juce_gui_extra.cpp.o -llog -landroid -lGLESv3 -lEGL libcpufeatures.a oboe/liboboe.a -llog -lOpenSLES -latomic -lm && cd ."
E:/___SOURCE_TREE/GHHHHH/threaded async updater demo/threadedAsync/Source/MainComponent.cpp:70: error: undefined reference to ‘juce::FileChooser::browseForFileToOpen(juce::FilePreviewComponent*)’
clang++: error: linker command failed with exit code 1 (use -v to see invocation)
ninja: build stopped: subcommand failed.
