The question is how far you should comment what. It can be useful to provide a B4XPages or module with comments such as the used libraries and versions. Take the variable manager you have chosen for the UsbManager. The usual system is to start a variable with a lowercase letter, so
Private usbManager As UsbManager
Or a shorter version
Private usbMngr As UsbManager
With this notation you explain without explanation what a source code line does. Unless you have a very specific, non-obvious reason, you might want to provide that as an explanatory comment.