I want to use 1 google apps script from multiple Google Spreadsheet files within my Google Drive.
I followed this answer: "you could use Libraries. The idea is that you create one script that you use as a library"
I deployed a library and tried to access it from the Google Apps Script editor. Indeed I can find the library when I enter the library ID (i.e. script ID from script settings), but it gives me a manifest error:
Die Manifestdatei "appsscript.json" enthält Fehler: Ungültige Dienst-ID: 20012023_sistrix_urlkeyword_standalone
Translated:
The appsscript.json manifest file contains errors: Invalid service ID: 20012023_sistrix_urlkeyword_standalone
The manifest file looks like this:
{
"timeZone": "Europe/Berlin",
"dependencies": {},
"exceptionLogging": "STACKDRIVER",
"runtimeVersion": "V8"
}
I was not able to find any hint on how to enter a valid service ID into the manifest file.