Back to project page Steering-Wheel-Interface.
The source code is released under:
Copyright 2013 Kristoffer Smith and other contributors http://theksmith.com/ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation...
If you think the Android project Steering-Wheel-Interface 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. jav a2 s . c om*/ /** * 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."); } }