Back to project page AndSpinner.
The source code is released under:
GNU General Public License
If you think the Android project AndSpinner listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.hoho.android.usbserial; //w w w . j a va 2 s. co m /** * Static container of information about this library. */ public final class BuildInfo { /** * The current version of this library. Values are of the form * "major.minor.micro[-suffix]". A suffix of "-pre" indicates a pre-release * of the version preceeding it. */ public static final String VERSION = "0.2.0-pre"; private BuildInfo() { throw new IllegalStateException("Non-instantiable class."); } }