I created a Library in Google script as a standalone script with a function function1. I published a version of this script.
I also have a spreadsheet, and using a bound script, I added my library with identifier XXXX and managed to launch from scripts.google.com the function using a wrapper around function1 and logging the results :
function function2()
{
return XXXX.function1();
}
function test()
{
Logger.log(function2());
}
The problem is I cannot call this function from a cell in the spreadsheet. I get the error
Library with identifier XXXX is missing (perhaps it was deleted, or you don't have read access?) (ligne 0).
I am the owner of the scripts and the spreadsheet.