Back to project page usb-serial-for-android.
The source code is released under:
GNU Lesser General Public License
If you think the Android project usb-serial-for-android 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; //from w ww . j a va 2 s . c o 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."); } }