Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Post History
For store metadata, you'd be looking for the Device Support section of Flathub's documentation. Notably the touch control: <!-- Desktop AND mobile supported --> <supports> <con...
#1: Initial revision
For store metadata, you'd be looking for [the Device Support section][fh-docs] of Flathub's documentation. Notably the `touch` control: ```xml <!-- Desktop AND mobile supported --> <supports> <control>keyboard</control> <control>pointing</control> <control>touch</control> </supports> ``` and the display size ```xml <requires> <!-- Mobile/tablet AND desktop supported --> <display_length compare="ge">360</display_length> </requires> ``` Hopefully, that gets you what you need. If not, there are some older (perhaps deprecated) tags mentioned in [this Foliate ticket][foliate]. [fh-docs]: https://docs.flathub.org/docs/for-app-authors/metainfo-guidelines#device-support [foliate]: https://github.com/johnfactotum/foliate/issues/1586
