I maintain the HockeyApp plugin and was curious as to why the
android label does not appear on the
plugin page nor on the Android filter on the
plugin index.
I used the Jenkins plugin API for my plugin and saw that the label is indeed not appearing in the returned JSON so can understand why it wouldn't appear in the two places I mentioned above. However I can't quite work out where to add the label.
{
...
"categories": [
"languagesPlatforms",
"buildManagement"
],
"excerpt": "This plugin allows you to upload new versions of your iOS (.ipa), MacOS (.app), and Android (.apk) applications to hockeyapp.net.",
"gav": "org.jenkins-ci.plugins:hockeyapp:1.3.2",
"labels": [
"upload",
"ios"
],
"name": "hockeyapp",
"title": "HockeyApp",
"url": "http://updates.jenkins-ci.org/download/plugins/hockeyapp/1.3.2/hockeyapp.hpi",
"version": "1.3.2",
...
}
In the
wiki page itself I have added a
plugin-android label in the same way that there already existed
plugin-upload and
plugin-ios but that hasn't helped. Is there someplace else I should be adding it?
Many thanks.