Orignal code pulled from git://github.com/ytai/ioio.git Please note that built in Android Open Accessory support is included in Android 3.1 (API Level 12). If you want to use Android 2.3.4 (API Level 10) amd higher, you will need to use the Add-On Support Library.
9 lines
227 B
Java
9 lines
227 B
Java
package ioio.lib.spi;
|
|
|
|
public class NoRuntimeSupportException extends RuntimeException {
|
|
private static final long serialVersionUID = -6559208663699429514L;
|
|
|
|
public NoRuntimeSupportException(String desc) {
|
|
super(desc);
|
|
}
|
|
} |