I have written a small handful of Android applications and I make them available on a static site for those who can’t use app stores.
The old static site was a Django project that looked like a (somewhat ugly) blog. To add a new Android app, I’d spin up the admin page, upload the APK, fill in a few text fields, and save. A new ‘blog post’ would be generated through the magic of Python – this post would contain the Android app’s name, version, icon, and a QR code for ‘market://search?q=pname:’ (all extracted from the APK itself) plus the text fields for Description and Recent Changes. The post also included a download link for the APK which was stored in the media files on the Django site.
Is this the kind of thing I can do in Hugo? From reading the documentation, it would seem that I can do most of what I want to do with archetypes, once I figure out how to upload the new APKs. I don’t see any examples for that sort of thing. Help?
Jack.