View gist:914b14be06f7235d188c82c061eb76fe
Privacy Policy | |
Felipe Herranz built the DroidTerm Pro app as a Commercial app. This SERVICE is provided by Felipe Herranz and is intended for use as is. | |
This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service. | |
If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy. | |
The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at DroidTerm Pro unless otherwise defined in this Privacy Policy. | |
Information Collection and Use |
View UnsignedUtil.java
public class UnsignedUtil | |
{ | |
private final static short MAX_UNSIGNED_BYTE_VALUE = 256; | |
private final static int MAX_UNSIGNED_SHORT_VALUE = 65536; | |
private final static long MAX_UNSIGNED_INT_VALUE = 4294967296L; | |
private UnsignedUtil() | |
{ | |
} |
View UsbData.java
public class UsbData | |
{ | |
private String vendorId; | |
private String vendorName; | |
private String productId; | |
private String productName; | |
public UsbData(String vendorId, String vendorName, String productId, String productName) | |
{ |
View SoftKeyboard.java
/* | |
* Author: Felipe Herranz (felhr85@gmail.com) | |
* Contributors:Francesco Verheye (verheye.francesco@gmail.com) | |
* Israel Dominguez (dominguez.israel@gmail.com) | |
*/ | |
import java.util.ArrayList; | |
import java.util.List; | |
import java.util.concurrent.atomic.AtomicBoolean; | |
import android.os.Handler; |