-
public class AndroidModelRepresents a specific Android device model based on the available device build information Created by dyoung on 8/28/14.
-
-
Constructor Summary
Constructors Constructor Description AndroidModel(String version, String buildNumber, String model, String manufacturer)
-
Method Summary
Modifier and Type Method Description static AndroidModelforThisDevice()StringgetVersion()voidsetVersion(String mVersion)StringgetBuildNumber()StringgetModel()StringgetManufacturer()voidsetBuildNumber(String mBuildNumber)voidsetModel(String mModel)voidsetManufacturer(String mManufacturer)intmatchScore(AndroidModel otherModel)Calculates a qualitative match score between two different Android device models for the purposes of how likely they are to have similar Bluetooth signal level responses StringtoString()-
-
Method Detail
-
forThisDevice
static AndroidModel forThisDevice()
-
getVersion
String getVersion()
-
setVersion
void setVersion(String mVersion)
-
getBuildNumber
String getBuildNumber()
-
getManufacturer
String getManufacturer()
-
setBuildNumber
void setBuildNumber(String mBuildNumber)
-
setManufacturer
void setManufacturer(String mManufacturer)
-
matchScore
int matchScore(AndroidModel otherModel)
Calculates a qualitative match score between two different Android device models for the purposes of how likely they are to have similar Bluetooth signal level responses
-
-
-
-