target_link_libraries(${ProjectName} PUBLIC ${MACOS_LIBS}${LINK_LIBS})# if the platform is not APPLE, MACOS_LIBS will be empty and will not affect the build
# Android-specific flags
if(ANDROID)
set(CMAKE_ANDROID_ARCH_ABI arm64-v8a)# Set the desired ABI
set(CMAKE_ANDROID_STL_TYPE c++_shared)# Use C++ shared library
## Once the build is complete, you will find your unsigned `AutoAnswer.jpl` in:
```
jami-plugins/build/<your distribution>/
jami-plugins/build/{your distribution}/
```
## To install it on Jami, you need to sign the plugin. Refer to `sign.md` in the `jami-plugins/` directory for instructions on how to sign your plugin.