I want to publish VTK to Android (Qt Quick)

hello,This is my cmakelists.txt

cmake_minimum_required(VERSION 3.16)
project(VTKApp VERSION 0.1 LANGUAGES CXX)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(VTK_DIR "D:/bin/AVTK/CMakeExternals/Install/vtk-android/lib/cmake/vtk-9.3")
find_package(Qt6 6.4 REQUIRED COMPONENTS Quick)
if (CMAKE_BINARY_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
  message(FATAL_ERROR "VTK Android does not support in-source builds :) .")
endif ()
find_package(VTK REQUIRED )
qt_standard_project_setup()
qt_add_executable(appVTKApp
    main.cpp
)
qt_add_qml_module(appVTKApp
    URI VTKApp
    VERSION 1.0
    QML_FILES
        Main.qml
)
# Qt for iOS sets MACOSX_BUNDLE_GUI_IDENTIFIER automatically since Qt 6.1.
# If you are developing for iOS or macOS you should consider setting an
# explicit, fixed bundle identifier manually though.
set_target_properties(appVTKApp PROPERTIES
#    MACOSX_BUNDLE_GUI_IDENTIFIER com.example.appVTKApp
    MACOSX_BUNDLE_BUNDLE_VERSION ${PROJECT_VERSION}
    MACOSX_BUNDLE_SHORT_VERSION_STRING ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}
    MACOSX_BUNDLE TRUE
    WIN32_EXECUTABLE TRUE
)
if(NOT VTK_FOUND)
    message(SEND_ERROR "VTK NOT FOUND:${VTK_NOT_FOUND_MESSAGE}")
    return()
endif()
target_link_libraries(appVTKApp
    PRIVATE Qt6::Quick ${VTK_LIBRARIES}
)
vtk_module_autoinit(
  TARGETS appVTKApp
  MODULES ${VTK_LIBRARIES})

include(GNUInstallDirs)
install(TARGETS appVTKApp
    BUNDLE DESTINATION .
    LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
    RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
    ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
)

I just #include<vtkRenderWindow.h> and I get the following error。Please, how do I go about using the static library of vtk-android。

[1/11 4.5/sec] Automatic MOC and UIC for target appVTKApp
[2/10 7.6/sec] Running AUTOMOC file extraction for target appVTKApp
[3/5 0.8/sec] Building CXX object CMakeFiles/appVTKApp.dir/main.cpp.o
[4/5 0.8/sec] Linking CXX shared module libappVTKApp_arm64-v8a.so
FAILED: libappVTKApp_arm64-v8a.so 
C:\WINDOWS\system32\cmd.exe /C "cd . && D:\AppData\Android\Sdk\ndk\27.0.11902837\toolchains\llvm\prebuilt\windows-x86_64\bin\clang++.exe --target=aarch64-none-linux-android23 --sysroot=D:/AppData/Android/Sdk/ndk/27.0.11902837/toolchains/llvm/prebuilt/windows-x86_64/sysroot -fPIC -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fexceptions -frtti -stdlib=libc++ -O3 -DNDEBUG  -Wl,--build-id=sha1 -Wl,--no-rosegment -Wl,--no-undefined-version -Wl,--fatal-warnings -Wl,--gc-sections -Qunused-arguments -Wl,--no-undefined -shared  -o libappVTKApp_arm64-v8a.so @CMakeFiles\appVTKApp.rsp && cd ."
ld.lld: error: undefined symbol: __write_chk
>>> referenced by ProcessUNIX.c
>>>               ProcessUNIX.c.o:(kwsysProcessCreate) in archive D:/bin/AVTK/CMakeExternals/Install/vtk-android/lib/libvtksys-9.3.a
>>> referenced by ProcessUNIX.c
>>>               ProcessUNIX.c.o:(kwsysProcessChildErrorExit) in archive D:/bin/AVTK/CMakeExternals/Install/vtk-android/lib/libvtksys-9.3.a
clang++: error: linker command failed with exit code 1 (use -v to see invocation)
ninja: build stopped: subcommand failed.