info.xml 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. <?xml version="1.0"?>
  2. <info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
  4. <!--
  5. SPDX-FileCopyrightText: Ferdinand Thiessen <opensource@fthiessen.de>
  6. SPDX-License-Identifier: CC0-1.0
  7. -->
  8. <id>testapp</id>
  9. <name>Test App</name>
  10. <summary>Test App</summary>
  11. <description><![CDATA[A simple test app]]></description>
  12. <version>0.0.1</version>
  13. <licence>agpl</licence>
  14. <author mail="opensource@fthiessen.de" >Ferdinand Thiessen</author>
  15. <namespace>TestApp</namespace>
  16. <category>games</category>
  17. <bugs>https://github.com/nextcloud/server/issues</bugs>
  18. <dependencies>
  19. <nextcloud min-version="28" max-version="29"/>
  20. </dependencies>
  21. <navigations>
  22. <navigation>
  23. <name>Test App</name>
  24. <route>testapp.page.index</route>
  25. </navigation>
  26. <navigation>
  27. <name>Test App 2</name>
  28. <route>testapp.page.index</route>
  29. </navigation>
  30. </navigations>
  31. </info>