Same for me, you need to modify the NAMESPACE file. sometimes the contents of NAMESPACE are as follows:
# Generated by roxygen2: do not edit by hand
But you need to change it manually, for example:
# Generated by roxygen2: do not edit by hand export("function_name1", "function_name2")
OR use exportPattern("^[^\\.]") To export all functions.
source share