init.agi 469 B

12345678910111213141516171819202122
  1. /*
  2. Camera App Register Script
  3. */
  4. //Setup the module information
  5. var moduleLaunchInfo = {
  6. Name: "Camera",
  7. Desc: "The camera app that will never run out of storage",
  8. Group: "Media",
  9. IconPath: "Camera/img/module_icon.png",
  10. Version: "1.0",
  11. StartDir: "Camera/index.html",
  12. SupportFW: true,
  13. LaunchFWDir: "Camera/index.html",
  14. SupportEmb: false,
  15. InitFWSize: [475, 700],
  16. SupportedExt: []
  17. }
  18. //Register the module
  19. registerModule(JSON.stringify(moduleLaunchInfo));