You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
403 B

  1. -- 下载地址
  2. local defaultUrl = "https://www.baidu.com/"
  3. local config =
  4. {
  5. -- 版本 A
  6. -- 当前版本所有的包都需要更新,则增加一个all的字段
  7. ["1.0.0"] =
  8. {
  9. --["all"] = defaultUrl,
  10. },
  11. -- 版本 B
  12. -- 当前版本指定的包才需要更新,则增加指定版本的versionCode
  13. ["1.0.1"] =
  14. {
  15. --["1001"] = defaultUrl,
  16. --["1002"] = defaultUrl,
  17. },
  18. }
  19. return config