Having trouble setting library version to stable

一曲冷凌霜 提交于 2019-12-23 22:20:54

问题


I've created a library for use in another apps script, and looking at the Manifest's docs on Google, it says you can set the "version" in the "libraries" section to "stable" if you want it to automatically use the latest available verison

dependencies.libraries[].version string

The version of the library that is used by the script. This is either a version number or stable, meaning the last version created.

In my manifest I have this (with [name] and [ID] filled in):

"dependencies": {
"libraries": [{
  "userSymbol": "[name]",
  "libraryId": "[ID]",
  "version": "stable",
  "developmentMode": false
}]}

However, if I set this and try to view the web app, it gives me:

"Sorry, unable to open the file at this time"

Changing the version back to a number fixes this. Am I not setting this correctly?

来源:https://stackoverflow.com/questions/53091790/having-trouble-setting-library-version-to-stable

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!